From: compudj Date: Mon, 14 Jul 2008 21:24:48 +0000 (+0000) Subject: 64 bits X-Git-Tag: 0.80~68 X-Git-Url: http://git.lttng.org/?p=ltt-control.git;a=commitdiff_plain;h=fb1caac2704db7f0397de94ef94ec8ce9e5b4a7c 64 bits git-svn-id: http://ltt.polymtl.ca/svn@2960 04897980-b3bd-0310-b5e0-8ef037075253 --- diff --git a/ltt-control/lttctl/ltt-armalluser.sh b/ltt-control/lttctl/ltt-armalluser.sh index c390097..aa67089 100755 --- a/ltt-control/lttctl/ltt-armalluser.sh +++ b/ltt-control/lttctl/ltt-armalluser.sh @@ -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 *) diff --git a/ltt-control/lttctl/ltt-disarmalluser.sh b/ltt-control/lttctl/ltt-disarmalluser.sh index 6383ade..0d0f1eb 100755 --- a/ltt-control/lttctl/ltt-disarmalluser.sh +++ b/ltt-control/lttctl/ltt-disarmalluser.sh @@ -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 *)