summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-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 beec1e0465..85c3581f9d 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()
@@ -2601,6 +2602,7 @@ class RunQueueExecute:
2601 next |= self.rqdata.runtaskentries[tid].revdeps 2602 next |= self.rqdata.runtaskentries[tid].revdeps
2602 total.remove(tid) 2603 total.remove(tid)
2603 next.intersection_update(total) 2604 next.intersection_update(total)
2605 bb.event.check_for_interrupts(self.cooker.data)
2604 2606
2605 if time.time() > (lasttime + 30): 2607 if time.time() > (lasttime + 30):
2606 lasttime = time.time() 2608 lasttime = time.time()