summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/cooker.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 7de3df018d..f3ff4274ad 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -2090,6 +2090,8 @@ class CookerParser(object):
2090 if self.toparse: 2090 if self.toparse:
2091 bb.event.fire(bb.event.ParseStarted(self.toparse), self.cfgdata) 2091 bb.event.fire(bb.event.ParseStarted(self.toparse), self.cfgdata)
2092 def init(): 2092 def init():
2093 signal.signal(signal.SIGTERM, signal.SIG_DFL)
2094 signal.signal(signal.SIGHUP, signal.SIG_DFL)
2093 bb.utils.set_process_name(multiprocessing.current_process().name) 2095 bb.utils.set_process_name(multiprocessing.current_process().name)
2094 multiprocessing.util.Finalize(None, bb.codeparser.parser_cache_save, exitpriority=1) 2096 multiprocessing.util.Finalize(None, bb.codeparser.parser_cache_save, exitpriority=1)
2095 multiprocessing.util.Finalize(None, bb.fetch.fetcher_parse_save, exitpriority=1) 2097 multiprocessing.util.Finalize(None, bb.fetch.fetcher_parse_save, exitpriority=1)