s3:files: factor fsp_free() out of file_free()
[Samba/gebeck_regimport.git] / buildtools / scripts / abi_gen.sh
blobed6f445519ed7118a06f49585a7fdee5f084534e
1 #!/bin/sh
2 # generate a set of ABI signatures from a shared library
4 SHAREDLIB="$1"
6 GDBSCRIPT="gdb_syms.$$"
9 cat <<EOF
10 set height 0
11 set width 0
12 EOF
13 nm "$SHAREDLIB" | cut -d' ' -f2- | egrep '^[BDGTRVWS]' | grep -v @ | cut -c3- | sort | while read s; do
14 echo "echo $s: "
15 echo p $s
16 done
17 ) > $GDBSCRIPT
19 # forcing the terminal avoids a problem on Fedora12
20 TERM=none gdb -batch -x $GDBSCRIPT "$SHAREDLIB" < /dev/null
21 rm -f $GDBSCRIPT