mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
16 lines
287 B
Plaintext
16 lines
287 B
Plaintext
|
#!/bin/sh
|
||
|
# Modified version of tridge's backtrace script.
|
||
|
# we want everything on stderr, so the program is not disturbed
|
||
|
exec 1>&2
|
||
|
|
||
|
PID=$1
|
||
|
TMPFILE=$prefix/backtrace.$$
|
||
|
cat << EOF > $TMPFILE
|
||
|
set height 0
|
||
|
up 8
|
||
|
bt full
|
||
|
quit
|
||
|
EOF
|
||
|
gdb -x $TMPFILE $prefix/sbin/smbd $PID
|
||
|
/bin/rm -f $TMPFILE
|