usttrace: change ustd socket name to ustd-sock-PID
authorPierre-Marc Fournier <pierre-marc.fournier@polymtl.ca>
Thu, 28 Jan 2010 17:27:07 +0000 (12:27 -0500)
committerPierre-Marc Fournier <pierre-marc.fournier@polymtl.ca>
Thu, 28 Jan 2010 17:27:07 +0000 (12:27 -0500)
Also change internal variable name for that file name.

This is to make things clearer since traced apps also have
sockets.

usttrace

index 15336f638d91ab7133842d149456667b3033d162..fac84a1de6f3d0d93f547b2c9166c7891bf3bc75 100755 (executable)
--- a/usttrace
+++ b/usttrace
@@ -78,15 +78,15 @@ DATESTRING="$(hostname)-$(date +%Y%m%d%H%M%S)"
 OUTDIR="$BASE_TRACE_DIR/$DATESTRING"
 mkdir -p "$OUTDIR"
 
-# Choose socket path
-SOCKPATH="/tmp/ust-sock-$$"
+# Choose ustd socket path
+USTDSOCKPATH="/tmp/ustd-sock-$$"
 
 if [ "$arg_syswide_daemon" != "1" ];
 then
        pidfilepath="/tmp/usttrace-$USER-$(date +%Y%m%d%H%M%S%N)-ustd-pid"
        mkfifo -m 0600 "$pidfilepath"
        # Start daemon
-       $USTD --pidfile "$pidfilepath" -s "$SOCKPATH" -o "$OUTDIR" >"$OUTDIR/ustd.log" 2>&1 &
+       $USTD --pidfile "$pidfilepath" -s "$USTDSOCKPATH" -o "$OUTDIR" >"$OUTDIR/ustd.log" 2>&1 &
        # ustd sets up its server socket
        # ustd opens the pidfile, blocks because no one has opened it
        # we open pidfile
@@ -95,7 +95,7 @@ then
        # ustd closes pidfile
        # we unblock reading pidfile
        USTDPID="$(<$pidfilepath)"
-       export UST_DAEMON_SOCKET="$SOCKPATH"
+       export UST_DAEMON_SOCKET="$USTDSOCKPATH"
 fi
 
 # Establish the environment for the command
This page took 0.025892 seconds and 4 git commands to generate.