64 bits
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Mon, 14 Jul 2008 21:24:48 +0000 (21:24 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Mon, 14 Jul 2008 21:24:48 +0000 (21:24 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@2960 04897980-b3bd-0310-b5e0-8ef037075253

ltt-control/lttctl/ltt-armalluser.sh
ltt-control/lttctl/ltt-disarmalluser.sh

index c39009778cfcf2e63d29bc3a473b4ef1a09772b7..aa670891ba06e9718941f3055514fb6cdef72167 100755 (executable)
@@ -4,7 +4,7 @@
 echo Connecting all userspace markers of _CURRENTLY RUNNING_ processes only !
 
 for a in /proc/[0-9]*; do
-       for marker in `cat $a/markers`; do
+       for marker in `cat $a/markers | awk '{print $2}'`; do
                echo Connecting marker $a:$marker
                case $marker in 
                *)
index 6383adef091bf6b87ad34197de5559608a1ce338..0d0f1eb5ac4681af49e884f0c3fa5a36802691bc 100755 (executable)
@@ -4,7 +4,7 @@
 echo Disconnecting all userspace markers of _RUNNING PROCESSES_ only !
 
 for a in /proc/[0-9]*; do
-       for marker in `cat $a/markers`; do
+       for marker in `cat $a/markers | awk '{print $2}'`; do
                echo Disonnecting marker $a:$marker
                case $marker in 
                *)
This page took 0.02395 seconds and 4 git commands to generate.