aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorFrederic Weisbecker <fweisbec@gmail.com>2010-08-01 08:55:45 -0400
committerFrederic Weisbecker <fweisbec@gmail.com>2010-08-01 19:32:00 -0400
commit1b0ff06e68155de606f86e7e69eb238f14e05ba0 (patch)
treeada6010932fc96014822e95b702b40912e0f7ef7 /tools
parentdf92b40848616596c50b3b9e6d6ce8252af606ee (diff)
perf, sched migration: Librarize task states and event headers helpers
Librarize the task state and event headers helpers as they can be generally useful. Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Nikhil Rao <ncrao@google.com> Cc: Tom Zanussi <tzanussi@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/Core.py30
-rw-r--r--tools/perf/scripts/python/sched-migration.py30
2 files changed, 30 insertions, 30 deletions
diff --git a/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/Core.py b/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/Core.py
index 1dc464ee2ca8..aad7525bca1d 100644
--- a/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/Core.py
+++ b/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/Core.py
@@ -89,3 +89,33 @@ def trace_flag_str(value):
89 value &= ~idx 89 value &= ~idx
90 90
91 return string 91 return string
92
93
94def taskState(state):
95 states = {
96 0 : "R",
97 1 : "S",
98 2 : "D",
99 64: "DEAD"
100 }
101
102 if state not in states:
103 return "Unknown"
104
105 return states[state]
106
107
108class EventHeaders:
109 def __init__(self, common_cpu, common_secs, common_nsecs,
110 common_pid, common_comm):
111 self.cpu = common_cpu
112 self.secs = common_secs
113 self.nsecs = common_nsecs
114 self.pid = common_pid
115 self.comm = common_comm
116
117 def ts(self):
118 return (self.secs * (10 ** 9)) + self.nsecs
119
120 def ts_format(self):
121 return "%d.%d" % (self.secs, int(self.nsecs / 1000))
diff --git a/tools/perf/scripts/python/sched-migration.py b/tools/perf/scripts/python/sched-migration.py
index 983463050f04..b934383c3364 100644
--- a/tools/perf/scripts/python/sched-migration.py
+++ b/tools/perf/scripts/python/sched-migration.py
@@ -31,36 +31,6 @@ threads = { 0 : "idle"}
31def thread_name(pid): 31def thread_name(pid):
32 return "%s:%d" % (threads[pid], pid) 32 return "%s:%d" % (threads[pid], pid)
33 33
34class EventHeaders:
35 def __init__(self, common_cpu, common_secs, common_nsecs,
36 common_pid, common_comm):
37 self.cpu = common_cpu
38 self.secs = common_secs
39 self.nsecs = common_nsecs
40 self.pid = common_pid
41 self.comm = common_comm
42
43 def ts(self):
44 return (self.secs * (10 ** 9)) + self.nsecs
45
46 def ts_format(self):
47 return "%d.%d" % (self.secs, int(self.nsecs / 1000))
48
49
50def taskState(state):
51 states = {
52 0 : "R",
53 1 : "S",
54 2 : "D",
55 64: "DEAD"
56 }
57
58 if state not in states:
59 return "Unknown"
60
61 return states[state]
62
63
64class RunqueueEventUnknown: 34class RunqueueEventUnknown:
65 @staticmethod 35 @staticmethod
66 def color(): 36 def color():