]> git.proxmox.com Git - qemu.git/commitdiff
vl.c: Tidy up message printed when we exit on a signal
authorPeter Maydell <peter.maydell@linaro.org>
Wed, 30 Mar 2011 21:03:38 +0000 (22:03 +0100)
committerAurelien Jarno <aurelien@aurel32.net>
Sun, 3 Apr 2011 22:24:50 +0000 (00:24 +0200)
Tidy up the message printed when qemu exits due to a signal, so that
it's clearer where the message is coming from and that it's not just
stray debug output.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Acked-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
vl.c

diff --git a/vl.c b/vl.c
index d3d81e08fbc983a98f29aa83d95d6908362a901a..5c80600c71edcc45edf4a3700e4c35b45bb0883e 100644 (file)
--- a/vl.c
+++ b/vl.c
@@ -1169,8 +1169,15 @@ int qemu_shutdown_requested(void)
 void qemu_kill_report(void)
 {
     if (shutdown_signal != -1) {
-        fprintf(stderr, "Got signal %d from pid %d\n",
-                         shutdown_signal, shutdown_pid);
+        fprintf(stderr, "qemu: terminating on signal %d", shutdown_signal);
+        if (shutdown_pid == 0) {
+            /* This happens for eg ^C at the terminal, so it's worth
+             * avoiding printing an odd message in that case.
+             */
+            fputc('\n', stderr);
+        } else {
+            fprintf(stderr, " from pid %d\n", shutdown_pid);
+        }
         shutdown_signal = -1;
     }
 }