X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=usttrace;h=15336f638d91ab7133842d149456667b3033d162;hb=7b92d97d242b6de7a4125b6586cbfcffdba5fe39;hp=0843fb2c079566c9ec74d3e69bfa064b344e661c;hpb=6b22d5c15870c62cfdaa5ccafaf5e2b4468ba06e;p=ust.git diff --git a/usttrace b/usttrace index 0843fb2..15336f6 100755 --- a/usttrace +++ b/usttrace @@ -3,6 +3,10 @@ # usttrace by Pierre-Marc Fournier 2009 # Distributed under the GPLv2. +function error() { + echo "$0: error: $1" 2>/dev/stderr +} + USTTRACE_DIR="$(dirname $0)" if [ -x "${USTTRACE_DIR}/ustd/ustd" ] ; then # Use the not installed libraries instead @@ -13,6 +17,10 @@ if [ -x "${USTTRACE_DIR}/ustd/ustd" ] ; then else # Use the libraries that the dynamic link finds USTD="ustd" + if [ ! -x "$(which ustd 2>/dev/null)" ]; then + error "cannot find an executable ustd; make sure its location is in the PATH" + exit 1 + fi LIBINTERFORK_PATH="libinterfork.so" LIBMALLOCWRAP_PATH="libmallocwrap.so" LIBUST_PATH="libust.so" @@ -32,10 +40,6 @@ function usage () { echo " -s Use system-wide daemon instead of creating one for this session." 2>/dev/stderr } -function error() { - echo "$0: error: $1" 2>/dev/stderr -} - while getopts ":hlLmfs" options; do case $options in l) arg_preload_libust=1;; @@ -53,12 +57,6 @@ while getopts ":hlLmfs" options; do done shift $(($OPTIND - 1)) -if [ ! -x "$USTD" -a ! -x "$(which ustd 2>/dev/null)" ]; -then - error "specified path to ustd not executable ($USTD)" - exit 1 -fi - # Prepare vars CMD=$* @@ -89,6 +87,13 @@ then mkfifo -m 0600 "$pidfilepath" # Start daemon $USTD --pidfile "$pidfilepath" -s "$SOCKPATH" -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 + # we block reading pidfile + # ustd writes to pidfile + # ustd closes pidfile + # we unblock reading pidfile USTDPID="$(<$pidfilepath)" export UST_DAEMON_SOCKET="$SOCKPATH" fi @@ -143,7 +148,7 @@ then kill -SIGTERM "$USTDPID" echo "Waiting for ustd to shutdown..." - wait "$(USTDPID)" + wait "$USTDPID" rm "$pidfilepath" fi