diff options
| author | Ingo Molnar <mingo@elte.hu> | 2010-10-26 11:30:22 +0400 | 
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2010-10-26 11:30:22 +0400 | 
| commit | 5df414c61e1b6f15bdc3759f292c7404286c9827 (patch) | |
| tree | 41b50a595fc53de595edcc20b350c048ce2856fc /tools/perf/scripts/python/syscall-counts.py | |
| parent | 0b849ee88846e3488a34007c5b8b4249579ff159 (diff) | |
| parent | 7f6c1bd50d73d12f8b4ea09edb4515997f6527f5 (diff) | |
| download | linux-5df414c61e1b6f15bdc3759f292c7404286c9827.tar.xz | |
Merge branch 'perf/core' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux-2.6 into perf/urgent
Diffstat (limited to 'tools/perf/scripts/python/syscall-counts.py')
| -rw-r--r-- | tools/perf/scripts/python/syscall-counts.py | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/tools/perf/scripts/python/syscall-counts.py b/tools/perf/scripts/python/syscall-counts.py index f977e85ff049..ea183dc82d29 100644 --- a/tools/perf/scripts/python/syscall-counts.py +++ b/tools/perf/scripts/python/syscall-counts.py @@ -13,6 +13,7 @@ sys.path.append(os.environ['PERF_EXEC_PATH'] + \  from perf_trace_context import *  from Core import * +from Util import syscall_name  usage = "perf trace -s syscall-counts.py [comm]\n"; @@ -27,7 +28,7 @@ if len(sys.argv) > 1:  syscalls = autodict()  def trace_begin(): -	pass +	print "Press control+C to stop and show the summary"  def trace_end():  	print_syscall_totals() @@ -55,4 +56,4 @@ def print_syscall_totals():      for id, val in sorted(syscalls.iteritems(), key = lambda(k, v): (v, k), \  				  reverse = True): -	    print "%-40d  %10d\n" % (id, val), +	    print "%-40s  %10d\n" % (syscall_name(id), val), | 
