From e1669aca10fc3791f7112aeac6707f33a1cae440 Mon Sep 17 00:00:00 2001 From: compudj Date: Mon, 14 Jul 2008 21:22:06 +0000 Subject: [PATCH] 64 bits git-svn-id: http://ltt.polymtl.ca/svn@2959 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt-control/lttctl/ltt-armalluser.sh | 2 +- ltt-control/lttctl/ltt-disarmalluser.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ltt-control/lttctl/ltt-armalluser.sh b/ltt-control/lttctl/ltt-armalluser.sh index 10f4d7b..c390097 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 $a/markers; do + for marker in `cat $a/markers`; 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 9897061..6383ade 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 $a/markers; do + for marker in `cat $a/markers`; do echo Disonnecting marker $a:$marker case $marker in *) -- 2.34.1