summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-21 21:46:57 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-22 00:06:22 +0100
commit96f8ea07ace1379380fab2d78eb592fa40c867d4 (patch)
treec68ff478a22cad1262ff8a0b05ad07b7ea322676
parent9544108f7b413038d871ce6ca88232de2f2434d9 (diff)
downloadbitbake-contrib-96f8ea07ace1379380fab2d78eb592fa40c867d4.tar.gz
bitbake-worker: Improve sigterm handler
When processes terminate, we really want all of the child processes to terminate too. This was not happening for worker processes which spawned their own multiprocessing pools, leading to build hangs. This change ensures any sigterm gets passed to the whole process group. In local tests, this resolved some hanging process workloads I could generate. It does rely on signals being delivered in a timely fashion and there is a multiprocessing bug we have to work around there. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xbin/bitbake-worker7
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/bitbake-worker b/bin/bitbake-worker
index 05e0cf631..d1ff5b36c 100755
--- a/bin/bitbake-worker
+++ b/bin/bitbake-worker
@@ -81,6 +81,11 @@ def workerlog_write(msg):
lf.write(msg)
lf.flush()
+def sigterm_handler(signum, frame):
+ signal.signal(signal.SIGTERM, signal.SIG_DFL)
+ os.killpg(0, signal.SIGTERM)
+ sys.exit()
+
def fork_off_task(cfg, data, workerdata, fn, task, taskname, appends, taskdepdata, quieterrors=False):
# We need to setup the environment BEFORE the fork, since
# a fork() or exec*() activates PSEUDO...
@@ -132,7 +137,7 @@ def fork_off_task(cfg, data, workerdata, fn, task, taskname, appends, taskdepdat
global worker_pipe
pipein.close()
- signal.signal(signal.SIGTERM, signal.SIG_DFL)
+ signal.signal(signal.SIGTERM, sigterm_handler)
# Save out the PID so that the event can include it the
# events