bitbake: event/runqueue: remove unused 'd' arg from check_for_interrupts

(Bitbake rev: e0c5e94cc14dd6b1cbde491073c1f9407c97e428)

Signed-off-by: Chris Laplante <chris.laplante@agilent.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Chris Laplante
2025-08-06 10:53:07 -04:00
committed by Richard Purdie
parent b25ebbc408
commit f4a8ddd6c8
2 changed files with 17 additions and 17 deletions

View File

@@ -90,7 +90,7 @@ def disable_heartbeat():
# In long running code, this function should be called periodically
# to check if we should exit due to an interuption (.e.g Ctrl+C from the UI)
#
def check_for_interrupts(d):
def check_for_interrupts():
global _should_exit
if _should_exit.is_set():
bb.warn("Exiting due to interrupt.")