sstate: fixup calls to bb.event.check_for_interrupts to remove unused argument

This commit should come along with this associated commit in bitbake: https://patchwork.yoctoproject.org/project/bitbake/patch/20250806145308.2052128-2-chris.laplante@agilent.com/

(From OE-Core rev: b0438b744800af60037ecc585c659be05a50d419)

Signed-off-by: Chris Laplante <chris.laplante@agilent.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Chris Laplante
2025-08-07 14:12:57 -04:00
committed by Richard Purdie
parent bdb5e99854
commit 45c3fbcea3

View File

@@ -1038,7 +1038,7 @@ def sstate_checkhashes(sq_data, d, siginfo=False, currentcount=0, summary=True,
if progress:
bb.event.fire(bb.event.ProcessProgress(msg, next(cnt_tasks_done)), d)
bb.event.check_for_interrupts(d)
bb.event.check_for_interrupts()
tasklist = []
for tid in missed:
@@ -1298,7 +1298,7 @@ python sstate_eventhandler_reachablestamps() {
lines.remove(r)
removed = removed + 1
bb.event.fire(bb.event.ProcessProgress(msg, removed), d)
bb.event.check_for_interrupts(d)
bb.event.check_for_interrupts()
bb.event.fire(bb.event.ProcessFinished(msg), d)
@@ -1368,7 +1368,7 @@ python sstate_eventhandler_stalesstate() {
bb.utils.remove(stamp)
removed = removed + 1
bb.event.fire(bb.event.ProcessProgress(msg, removed), d)
bb.event.check_for_interrupts(d)
bb.event.check_for_interrupts()
bb.event.fire(bb.event.ProcessFinished(msg), d)
}