diff options
author | Roland McGrath <roland@redhat.com> | 1993-02-01 21:02:40 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1993-02-01 21:02:40 +0000 |
commit | 8b738924b00b2b921554288a9cc5c6654bd3d050 (patch) | |
tree | 5275810af976940c0121b9c12e6d9e4f74ba4eee | |
parent | afa97833ccb64541e3de526f46276a7ce5e6ab18 (diff) | |
download | gunmake-8b738924b00b2b921554288a9cc5c6654bd3d050.tar.gz |
Formerly job.c.~94~
-rw-r--r-- | job.c | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -412,20 +412,13 @@ free_child (child) #ifdef POSIX extern sigset_t fatal_signal_set; -static void +void unblock_sigs () { sigset_t empty; sigemptyset (&empty); sigprocmask (SIG_SETMASK, &empty, (sigset_t *) 0); } -#else -#ifdef HAVE_SIGSETMASK -extern int fatal_signal_mask; -#define unblock_sigs() sigsetmask (0) -#else -#define unblock_sigs() -#endif #endif /* Start a job to run the commands specified in CHILD. |