Commit 6ea08625 authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

Added ticks to the display of unknown time in the profile.

Review URL: http://codereview.chromium.org/27050

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1343 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent f85b5261
......@@ -321,7 +321,8 @@ class TickProcessor(object):
if not self.ignore_unknown and self.unaccounted_number_of_ticks > 0:
self.PrintHeader('Unknown')
unknown_percentage = self.unaccounted_number_of_ticks * 100.0 / self.total_number_of_ticks
print(' %(total)5.1f%%' % {
print(' %(ticks)5d %(total)5.1f%%' % {
'ticks' : self.unaccounted_number_of_ticks,
'total' : unknown_percentage,
})
# Print the library ticks.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment