Author: [email protected]
Date: Mon Feb 23 23:36:58 2009
New Revision: 1343
Modified:
branches/bleeding_edge/tools/tickprocessor.py
Log:
Added ticks to the display of unknown time in the profile.
Review URL: http://codereview.chromium.org/27050
Modified: branches/bleeding_edge/tools/tickprocessor.py
==============================================================================
--- branches/bleeding_edge/tools/tickprocessor.py (original)
+++ branches/bleeding_edge/tools/tickprocessor.py Mon Feb 23 23:36:58 2009
@@ -321,7 +321,8 @@
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.
--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---