diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2011-04-07 11:31:39 -0400 |
---|---|---|
committer | Bjoern Brandenburg <bbb@mpi-sws.org> | 2012-08-01 03:48:15 -0400 |
commit | 948a41951d2c62f012dc474d10ec98fab617254b (patch) | |
tree | cbd2b1c1950e386f5647e4ea038e31f97cf41039 | |
parent | 57069d06ed3b5086bf5ebd87998ae8afedbac7cc (diff) |
Added comments to explain each sched_trace ID.
-rwxr-xr-x | st_trace | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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 |
30 | NUM_CPUS=`egrep -c '^processor|online' /proc/cpuinfo` | 30 | NUM_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 | ||
32 | ST_IDS="501 502 503 504 505 506 507 508 509 510" | 43 | ST_IDS="501 502 503 504 505 506 507 508 509 510" |
33 | 44 | ||
34 | TAG=$1 | 45 | TAG=$1 |