update compat, fix newline
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Tue, 23 Dec 2008 18:34:59 +0000 (18:34 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Tue, 23 Dec 2008 18:34:59 +0000 (18:34 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@3189 04897980-b3bd-0310-b5e0-8ef037075253

trunk/ltt-control/configure.in
trunk/ltt-control/lttctl/ltt-armall.sh
trunk/ltt-control/lttctl/ltt-disarmall.sh

index 743ca0b2b4f0654a247f175861e585dc854b3c85..303ca95267e87be25694d6bd263a83395c4530e3 100644 (file)
@@ -23,7 +23,7 @@
 AC_PREREQ(2.57)
 AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
 #AC_WITH_LTDL  # not needed ?
-AM_INIT_AUTOMAKE(ltt-control,0.61-15122008)
+AM_INIT_AUTOMAKE(ltt-control,0.62-23122008)
 AM_CONFIG_HEADER(config.h)
 AM_PROG_LIBTOOL
 
index ee029fbee989865d070a191119842a29075fd8f6..a8d404bca8c95fd97a6f61dc1bd2c42c85d29434 100755 (executable)
@@ -4,7 +4,8 @@
 echo Connecting all markers
 MARKERS=`cat /proc/ltt|grep -v %k|awk '{print $2 " " $4}'|sort -u|grep -v ^metadata|grep -v ^locking|grep -v ^lockdep`
 
-IFS=$'\n'
+#separator is newline
+IFS=$
 for a in $MARKERS; do
        echo Connecting $a
 
@@ -39,6 +40,8 @@ MARKERS=`cat /proc/ltt|grep -v %k|awk '{print $2}'|sort -u |grep ^tap_`
 #Uncomment the following to also record lockdep events.
 #MARKERS=`cat /proc/ltt|grep -v %k|awk '{print $2}'|sort -u|grep -e ^tap_ -e ^lockdep`
 
+#separator is newline
+IFS=$
 for a in $MARKERS; do
        echo Connecting $a
 
index bf97a5f3ec34752db052513cac1a673559683f0a..12b6eff3386febef5cf3348f09c5c6d3bf587eb7 100755 (executable)
@@ -3,7 +3,8 @@
 echo Disconnecting all markers
 MARKERS=`cat /proc/ltt|grep -v %k|awk '{print $2 " " $4}'|sort -u|grep -v ^metadata|grep -v ^locking|grep -v ^lockdep|grep -v ^tap`
 
-IFS=$'\n'
+#separator is newline
+IFS=$
 for a in $MARKERS; do echo Disconnecting $a; echo "disconnect $a" > /proc/ltt; done
 
 # Markers starting with "tap_" are considered high-speed.
@@ -13,7 +14,8 @@ MARKERS=`cat /proc/ltt|grep -v %k|awk '{print $2 " " $4}'|sort -u |grep ^tap`
 #Uncomment the following to also stop recording lockdep events.
 #MARKERS=`cat /proc/ltt|grep -v %k|awk '{print $2}'|sort -u|grep -e ^tap_ -e ^lockdep`
 
-IFS=$'\n'
+#separator is newline
+IFS=$
 for a in $MARKERS; do
        echo Disconnecting $a
 
This page took 0.024522 seconds and 4 git commands to generate.