summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 1124332186..a05630d52d 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1940,7 +1940,8 @@ class Parser(multiprocessing.Process):
1940 except IndexError: 1940 except IndexError:
1941 break 1941 break
1942 result = self.parse(*job) 1942 result = self.parse(*job)
1943 1943 # Clear the siggen cache after parsing to control memory usage, its huge
1944 bb.parse.siggen.postparsing_clean_cache()
1944 try: 1945 try:
1945 self.results.put(result, timeout=0.25) 1946 self.results.put(result, timeout=0.25)
1946 except queue.Full: 1947 except queue.Full: