qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [COMMIT e0c97bd] monitor: Convert do_stop() to QObject


From: Anthony Liguori
Subject: [Qemu-commits] [COMMIT e0c97bd] monitor: Convert do_stop() to QObject
Date: Fri, 09 Oct 2009 02:22:01 -0000

From: Luiz Capitulino <address@hidden>

Patchworks-ID: 35343
Signed-off-by: Luiz Capitulino <address@hidden>
Signed-off-by: Anthony Liguori <address@hidden>

diff --git a/monitor.c b/monitor.c
index 4ba415c..ae0a567 100644
--- a/monitor.c
+++ b/monitor.c
@@ -599,7 +599,10 @@ static void do_singlestep(Monitor *mon, const QDict *qdict)
     }
 }
 
-static void do_stop(Monitor *mon, const QDict *qdict)
+/**
+ * do_stop(): Stop VM execution
+ */
+static void do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
 {
     vm_stop(EXCP_INTERRUPT);
 }
diff --git a/qemu-monitor.hx b/qemu-monitor.hx
index 51c7673..8fcba24 100644
--- a/qemu-monitor.hx
+++ b/qemu-monitor.hx
@@ -287,7 +287,8 @@ ETEXI
         .args_type  = "",
         .params     = "",
         .help       = "stop emulation",
-        .mhandler.cmd = do_stop,
+        .user_print = monitor_user_noop,
+        .mhandler.cmd_new = do_stop,
     },
 
 STEXI




reply via email to

[Prev in Thread] Current Thread [Next in Thread]