]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - nojobs.c
bash-4.4 alpha release
[thirdparty/bash.git] / nojobs.c
index 467adf482c7ee56a89e1c80fb1da81204fd23191..a456115a2ea6e34d7d0159c50b3b8a546cb0b14b 100644 (file)
--- a/nojobs.c
+++ b/nojobs.c
@@ -86,6 +86,8 @@ extern int wait_signal_received;
 volatile pid_t last_made_pid = NO_PID;
 volatile pid_t last_asynchronous_pid = NO_PID;
 
+static int queue_sigchld, waiting_for_child;   /* dummy declarations */
+
 /* Call this when you start making children. */
 int already_making_children = 0;
 
@@ -704,6 +706,11 @@ wait_for_background_pids ()
   cleanup_dead_jobs ();
 }
 
+void
+wait_sigint_cleanup ()
+{
+}
+
 /* Make OLD_SIGINT_HANDLER the SIGINT signal handler. */
 #define INVALID_SIGNAL_HANDLER (SigHandler *)wait_for_background_pids
 static SigHandler *old_sigint_handler = INVALID_SIGNAL_HANDLER;