1
0
mirror of https://github.com/mirror/make.git synced 2025-04-01 07:00:39 +08:00

Formerly job.h.~5~

This commit is contained in:
Roland McGrath 1993-02-01 21:03:32 +00:00
parent 8b738924b0
commit 69e442ec90

11
job.h
View File

@ -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