diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-02-29 10:45:25 -0500 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-02-29 10:45:25 -0500 |
commit | 378f9227b04b876ff06af099715e7d60cdc49903 (patch) | |
tree | 5a3a3bc2147cbb4740ea78888220b8c94cc6fbd4 /buildrun.cxx | |
parent | 9badcdf13130313c19a489e7703988effb4f7cea (diff) | |
parent | 9ceec314dfc92c5d69442966dd386aaefee90bea (diff) | |
download | systemtap-steved-378f9227b04b876ff06af099715e7d60cdc49903.tar.gz systemtap-steved-378f9227b04b876ff06af099715e7d60cdc49903.tar.xz systemtap-steved-378f9227b04b876ff06af099715e7d60cdc49903.zip |
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'buildrun.cxx')
-rw-r--r-- | buildrun.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/buildrun.cxx b/buildrun.cxx index 67836108..f3f29d49 100644 --- a/buildrun.cxx +++ b/buildrun.cxx @@ -16,7 +16,7 @@ #include <sstream> extern "C" { -#include "signal.h" +#include <signal.h> #include <sys/wait.h> #include <pwd.h> #include <sys/types.h> @@ -269,9 +269,6 @@ run_pass (systemtap_session& s) if (s.verbose>1) clog << "Running " << staprun_cmd << endl; - signal (SIGHUP, SIG_IGN); - signal (SIGINT, SIG_IGN); rc = system (staprun_cmd.c_str ()); - return rc; } |