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:
parent
8b738924b0
commit
69e442ec90
11
job.h
11
job.h
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user