From: Kevin Wolf Date: Wed, 14 Sep 2011 13:38:40 +0000 (+0200) Subject: Fix termination by signal with -no-shutdown X-Git-Tag: TizenStudio_2.0_p2.3~2245 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=93e3db20a8a01a0136a6a28b6867bffb49879c93;p=sdk%2Femulator%2Fqemu.git Fix termination by signal with -no-shutdown On signals such as SIGTERM qemu should exit instead of just stopping the VM even with -no-shutdown. Signed-off-by: Kevin Wolf Signed-off-by: Anthony Liguori --- diff --git a/vl.c b/vl.c index b773d2f..0c2fc3f 100644 --- a/vl.c +++ b/vl.c @@ -1296,6 +1296,7 @@ void qemu_system_killed(int signal, pid_t pid) { shutdown_signal = signal; shutdown_pid = pid; + no_shutdown = 0; qemu_system_shutdown_request(); }