mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
5637940838
(This used to be commit e84871dd32
)
29 lines
419 B
Bash
Executable File
29 lines
419 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# we want everything on stderr, so the program is not disturbed
|
|
exec 1>&2
|
|
|
|
PID=$1
|
|
PROG=$2
|
|
|
|
TMPFILE=/tmp/gdb.$$
|
|
cat << EOF > $TMPFILE
|
|
set height 1000
|
|
bt full
|
|
quit
|
|
EOF
|
|
|
|
if [ ! -f $PROG ]; then
|
|
PROG=`which $PROG`
|
|
fi
|
|
if [ ! -f $PROG ]; then
|
|
PROG=/proc/$PID/exe
|
|
fi
|
|
if [ ! -f $PROG ]; then
|
|
echo "Unable to find binary"
|
|
exit 1
|
|
fi
|
|
|
|
gdb -batch -x $TMPFILE $PROG $PID < /dev/null
|
|
/bin/rm -f $TMPFILE
|