From b197bf0b2a6267b73edcdbf68c73d259bf6a6e6a Mon Sep 17 00:00:00 2001 From: Martin Hunt Date: Mon, 21 Apr 2008 16:50:52 -0400 Subject: Change staprun to exec stapio. Add "-d" option to staprun. --- runtime/staprun/staprun_funcs.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'runtime/staprun/staprun_funcs.c') diff --git a/runtime/staprun/staprun_funcs.c b/runtime/staprun/staprun_funcs.c index b95a9a5a..c1cb92b7 100644 --- a/runtime/staprun/staprun_funcs.c +++ b/runtime/staprun/staprun_funcs.c @@ -16,18 +16,6 @@ #include #include -void setup_staprun_signals(void) -{ - struct sigaction a; - memset(&a, 0, sizeof(a)); - sigfillset(&a.sa_mask); - a.sa_handler = SIG_IGN; - sigaction(SIGINT, &a, NULL); - sigaction(SIGTERM, &a, NULL); - sigaction(SIGHUP, &a, NULL); - sigaction(SIGQUIT, &a, NULL); -} - extern long init_module(void *, unsigned long, const char *); /* Module errors get translated. */ -- cgit