summaryrefslogtreecommitdiff
path: root/vl.c
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2014-02-04 20:06:47 +0200
committerAndreas Färber <afaerber@suse.de>2014-02-13 17:47:43 +0100
commitb3be57c358b3186b675ce4452a030fd3d9f37be0 (patch)
treeb7b6d96142e5fa0bf53e5bd72c2896dff4a87822 /vl.c
parentf673e70ccc668607620cd6d30fd0b9bc7a54151d (diff)
downloadqemu-b3be57c358b3186b675ce4452a030fd3d9f37be0.tar.gz
qtest: don't report signals if qtest driver enabled
qtest driver always uses signals to kill qemu no need to report it, whatever the accelerator state. Add API to detect qtest driver, and suppress reporting signals in this case. Reported-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'vl.c')
-rw-r--r--vl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vl.c b/vl.c
index 383be1b617..a7b00cdd37 100644
--- a/vl.c
+++ b/vl.c
@@ -1750,7 +1750,7 @@ static int qemu_shutdown_requested(void)
static void qemu_kill_report(void)
{
- if (!qtest_enabled() && shutdown_signal != -1) {
+ if (!qtest_driver() && shutdown_signal != -1) {
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