]> git.ipfire.org Git - thirdparty/make.git/commitdiff
Formerly job.h.~5~
authorRoland McGrath <roland@redhat.com>
Mon, 1 Feb 1993 21:03:32 +0000 (21:03 +0000)
committerRoland McGrath <roland@redhat.com>
Mon, 1 Feb 1993 21:03:32 +0000 (21:03 +0000)
job.h

diff --git a/job.h b/job.h
index 63e3225d9f5ebbe2fd78dad2fa30bf111d3abf50..a3065d26006f991e40e35d2eb608c2257842f8d5 100644 (file)
--- a/job.h
+++ b/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