diff options
author | rsc <devnull@localhost> | 2005-01-14 17:31:01 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-01-14 17:31:01 +0000 |
commit | 1ac1981659ba7abcc1c76436e4b4dfc2bc616d2a (patch) | |
tree | cbbb16515504e691f3f5e9a4738a58e569559644 /src | |
parent | 3afc6b5e70c2a589f8ca9f8feb5470d2975a2915 (diff) | |
download | plan9port-1ac1981659ba7abcc1c76436e4b4dfc2bc616d2a.tar.gz plan9port-1ac1981659ba7abcc1c76436e4b4dfc2bc616d2a.tar.bz2 plan9port-1ac1981659ba7abcc1c76436e4b4dfc2bc616d2a.zip |
where did this change go?
Diffstat (limited to 'src')
-rw-r--r-- | src/libthread/daemonize.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/libthread/daemonize.c b/src/libthread/daemonize.c index 4ed252e0..7aa1494a 100644 --- a/src/libthread/daemonize.c +++ b/src/libthread/daemonize.c @@ -74,7 +74,17 @@ static int sigs[] = SIGALRM, SIGTERM, SIGCHLD, SIGSTOP, SIGTSTP, SIGTTIN, SIGTTOU, SIGURG, SIGXCPU, SIGXFSZ, SIGVTALRM, SIGPROF, - SIGWINCH, SIGIO, SIGPWR, SIGSYS + SIGWINCH, SIGIO, +#ifdef SIGEMT + SIGEMT, +#endif +#ifdef SIGPWR + SIGPWR, +#endif +#ifdef SIGINFO + SIGINFO, +#endif + SIGSYS }; void |