mirror of
https://git.yoctoproject.org/poky
synced 2026-04-19 15:32:13 +02:00
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:
committed by
Richard Purdie
parent
bdb5e99854
commit
45c3fbcea3
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user