summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r--bitbake/lib/bb/runqueue.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 83e5273449..84a6f4172c 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1285,7 +1285,8 @@ class RunQueueData:
1285 dealtwith.add(tid) 1285 dealtwith.add(tid)
1286 todeal.remove(tid) 1286 todeal.remove(tid)
1287 self.prepare_task_hash(tid) 1287 self.prepare_task_hash(tid)
1288 bb.event.check_for_interrupts(self.cooker.data) 1288
1289 bb.event.check_for_interrupts(self.cooker.data)
1289 1290
1290 if time.time() > (lasttime + 30): 1291 if time.time() > (lasttime + 30):
1291 lasttime = time.time() 1292 lasttime = time.time()
@@ -2602,6 +2603,7 @@ class RunQueueExecute:
2602 next |= self.rqdata.runtaskentries[tid].revdeps 2603 next |= self.rqdata.runtaskentries[tid].revdeps
2603 total.remove(tid) 2604 total.remove(tid)
2604 next.intersection_update(total) 2605 next.intersection_update(total)
2606 bb.event.check_for_interrupts(self.cooker.data)
2605 2607
2606 if time.time() > (lasttime + 30): 2608 if time.time() > (lasttime + 30):
2607 lasttime = time.time() 2609 lasttime = time.time()