From 7e4c694c9f53ce9458e052adb918c45db88254dd Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 16 Feb 2011 12:33:40 +0000 Subject: bitbake/runqueue.py: Ensure child has the default SIGCHLD handler restored Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bitbake/lib') diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 572b87227..7d1f48aee 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -1107,6 +1107,8 @@ class RunQueueExecute: # themselves bblogger.handlers = [bb.event.LogHandler()] + signal.signal(signal.SIGCHLD, signal.SIG_DFL) + self.rq.state = runQueueChildProcess # Make the child the process group leader os.setpgid(0, 0) -- cgit v1.2.3