Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Philip Trettner
aion
Commits
2c07be45
Commit
2c07be45
authored
Jun 09, 2016
by
Philip Trettner
Browse files
Added total time to summary
parent
3dc067fa
Changes
1
Show whitespace changes
Inline
Side-by-side
src/aion/ActionAnalyzer.cc
View file @
2c07be45
...
@@ -159,6 +159,8 @@ void ActionAnalyzer::dumpSummary(std::ostream &oss, bool verbose)
...
@@ -159,6 +159,8 @@ void ActionAnalyzer::dumpSummary(std::ostream &oss, bool verbose)
oss
<<
" "
<<
desc
<<
std
::
string
(
nameLength
-
desc
.
size
(),
' '
)
<<
" "
;
oss
<<
" "
<<
desc
<<
std
::
string
(
nameLength
-
desc
.
size
(),
' '
)
<<
" "
;
oss
<<
aion_fmt
::
format
(
cntFmt
,
a
->
count
())
<<
"x "
;
oss
<<
aion_fmt
::
format
(
cntFmt
,
a
->
count
())
<<
"x "
;
aion_systime
::
formatHuman
(
a
->
averageNS
(),
oss
);
aion_systime
::
formatHuman
(
a
->
averageNS
(),
oss
);
oss
<<
" = "
;
aion_systime
::
formatHuman
(
a
->
totalTimeNS
(),
oss
);
oss
<<
" ("
;
oss
<<
" ("
;
aion_systime
::
formatHuman
(
a
->
minNS
(),
oss
);
aion_systime
::
formatHuman
(
a
->
minNS
(),
oss
);
oss
<<
" ~ "
;
oss
<<
" ~ "
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment