diff options
Diffstat (limited to 'tools/perf/scripts/python/futex-contention.py')
-rw-r--r-- | tools/perf/scripts/python/futex-contention.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/scripts/python/futex-contention.py b/tools/perf/scripts/python/futex-contention.py index 0f5cf437b602..f221c62e0a10 100644 --- a/tools/perf/scripts/python/futex-contention.py +++ b/tools/perf/scripts/python/futex-contention.py | |||
@@ -46,5 +46,5 @@ def trace_end(): | |||
46 | for (tid, lock) in lock_waits: | 46 | for (tid, lock) in lock_waits: |
47 | min, max, avg, count = lock_waits[tid, lock] | 47 | min, max, avg, count = lock_waits[tid, lock] |
48 | print "%s[%d] lock %x contended %d times, %d avg ns" % \ | 48 | print "%s[%d] lock %x contended %d times, %d avg ns" % \ |
49 | (process_names[tid], tid, lock, count, avg) | 49 | (process_names[tid], tid, lock, count, avg) |
50 | 50 | ||