diff options
author | Roland McGrath <roland@redhat.com> | 1993-02-01 21:03:32 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1993-02-01 21:03:32 +0000 |
commit | 69e442ec90a007ec5465eae3adc522f3996b55f9 (patch) | |
tree | d0e249b13cde6c6908a2cce2962906a10115cc67 /job.h | |
parent | 8b738924b00b2b921554288a9cc5c6654bd3d050 (diff) | |
download | gunmake-69e442ec90a007ec5465eae3adc522f3996b55f9.tar.gz |
Formerly job.h.~5~
Diffstat (limited to 'job.h')
-rw-r--r-- | job.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -49,3 +49,14 @@ extern void child_execute_job (); extern void exec_command (); extern unsigned int job_slots_used; + +#ifdef POSIX +extern void unblock_sigs (); +#else +#ifdef HAVE_SIGSETMASK +extern int fatal_signal_mask; +#define unblock_sigs() sigsetmask (0) +#else +#define unblock_sigs() +#endif +#endif |