aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2011-04-07 11:31:39 -0400
committerBjoern Brandenburg <bbb@mpi-sws.org>2012-08-01 03:48:15 -0400
commit948a41951d2c62f012dc474d10ec98fab617254b (patch)
treecbd2b1c1950e386f5647e4ea038e31f97cf41039
parent57069d06ed3b5086bf5ebd87998ae8afedbac7cc (diff)
Added comments to explain each sched_trace ID.
-rwxr-xr-xst_trace11
1 files changed, 11 insertions, 0 deletions
diff --git a/st_trace b/st_trace
index b89ce95..e9c1a9f 100755
--- a/st_trace
+++ b/st_trace
@@ -29,6 +29,17 @@ trap 'on_finish' SIGUSR1
29# works for sparc64 and Intel x86 if all CPUs are online 29# works for sparc64 and Intel x86 if all CPUs are online
30NUM_CPUS=`egrep -c '^processor|online' /proc/cpuinfo` 30NUM_CPUS=`egrep -c '^processor|online' /proc/cpuinfo`
31 31
32# Trace ID Key:
33# 501 - sched_trace_task_name
34# 502 - sched_trace_task_param
35# 503 - sched_trace_task_release
36# 504 - sched_trace_task_switch_to
37# 505 - sched_trace_task_switch_away
38# 506 - sched_trace_task_completion
39# 507 - sched_trace_task_block
40# 508 - sched_trace_task_resume
41# 509 - sched_trace_action
42# 510 - sched_trace_sys_release
32ST_IDS="501 502 503 504 505 506 507 508 509 510" 43ST_IDS="501 502 503 504 505 506 507 508 509 510"
33 44
34TAG=$1 45TAG=$1