aboutsummaryrefslogtreecommitdiffstats
path: root/start_sched_trace
diff options
context:
space:
mode:
Diffstat (limited to 'start_sched_trace')
-rwxr-xr-xstart_sched_trace4
1 files changed, 3 insertions, 1 deletions
diff --git a/start_sched_trace b/start_sched_trace
index fa61185..7855fe4 100755
--- a/start_sched_trace
+++ b/start_sched_trace
@@ -7,10 +7,12 @@ NUM_CPUS=`egrep -c 'processor|online' /proc/cpuinfo`
7 7
8ST_IDS="501 502 503 504 505 506 507 508 509" 8ST_IDS="501 502 503 504 505 506 507 508 509"
9 9
10TAG=$1
11
10for x in `seq 0 $(($NUM_CPUS - 1))` 12for x in `seq 0 $(($NUM_CPUS - 1))`
11do 13do
12 echo -n "CPU $x: " 14 echo -n "CPU $x: "
13 ftcat /home/litmus/log$x $ST_IDS > st${x}.bin & 15 ftcat /home/litmus/log$x $ST_IDS > st${TAG}${x}.bin &
14 echo $! "[$?]" 16 echo $! "[$?]"
15done 17done
16 18