mirror of
https://github.com/samba-team/samba.git
synced 2025-10-30 08:23:49 +03:00
r19150: add a usefull tool to test the gdb_backtrace script
just compile it with cc -g -o gdb_backtrace_test gdb_backtrace_test.c and run it in the same directory where your gdb_backtrace script is. metze
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
d86100289a
commit
56ae0171ba
42
source/script/gdb_backtrace_test.c
Normal file
42
source/script/gdb_backtrace_test.c
Normal file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
|
||||
add a usefull tool to test the gdb_backtrace script
|
||||
|
||||
just compile it with
|
||||
cc -g -o gdb_backtrace_test gdb_backtrace_test.c
|
||||
|
||||
and run it in the same directory where your gdb_backtrace script is.
|
||||
|
||||
2006 - Stefan Metzmacher <metze@samba.org>
|
||||
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <signal.h>
|
||||
|
||||
static const char *prog;
|
||||
|
||||
static void sig_fault(int sig)
|
||||
{
|
||||
int ret;
|
||||
char cmdstr[200];
|
||||
|
||||
snprintf(cmdstr, sizeof(cmdstr),
|
||||
"./gdb_backtrace %u %s",
|
||||
getpid(), prog);
|
||||
printf("sig_fault start: %s\n", cmdstr);
|
||||
ret = system(cmdstr);
|
||||
printf("sig_fault end: %d\n", ret);
|
||||
}
|
||||
|
||||
int main(int argc, const char **argv)
|
||||
{
|
||||
prog = argv[0];
|
||||
|
||||
signal(SIGABRT, sig_fault);
|
||||
|
||||
abort();
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user