mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 12:32:15 +02:00
runqemu: check the qemu PID has been set before kill()ing it
If runqemu is killed, check that we have a valid PID for the qemu before sending a kill() to it. [ YOCTO #14651 ] (From OE-Core rev: 48bd07808672fe84a452a5b0f4f4b6ff7daa32ae) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 0f3afbd3a6a6bef668612f818517df7543c0a683) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
f996b0f318
commit
b498dc5a97
@@ -1580,7 +1580,8 @@ def main():
|
||||
|
||||
def sigterm_handler(signum, frame):
|
||||
logger.info("SIGTERM received")
|
||||
os.kill(config.qemupid, signal.SIGTERM)
|
||||
if config.qemupid:
|
||||
os.kill(config.qemupid, signal.SIGTERM)
|
||||
config.cleanup()
|
||||
# Deliberately ignore the return code of 'tput smam'.
|
||||
subprocess.call(["tput", "smam"])
|
||||
|
||||
Reference in New Issue
Block a user