qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 09/14] monitor: Convert do_system_reset() to QObject


From: Luiz Capitulino
Subject: [Qemu-devel] [PATCH 09/14] monitor: Convert do_system_reset() to QObject
Date: Thu, 1 Oct 2009 12:50:40 -0300

Signed-off-by: Luiz Capitulino <address@hidden>
---
 monitor.c       |    6 +++++-
 qemu-monitor.hx |    4 ++--
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/monitor.c b/monitor.c
index 3e96792..f2f0c74 100644
--- a/monitor.c
+++ b/monitor.c
@@ -1329,7 +1329,11 @@ static void do_boot_set(Monitor *mon, const QDict *qdict)
     }
 }
 
-static void do_system_reset(Monitor *mon, const QDict *qdict)
+/**
+ * do_system_reset(): Issue a machine reset
+ */
+static void do_system_reset(Monitor *mon, const QDict *qdict,
+                            QObject **ret_data, MonitorError *error)
 {
     qemu_system_reset_request();
 }
diff --git a/qemu-monitor.hx b/qemu-monitor.hx
index 91bfe37..4f8e678 100644
--- a/qemu-monitor.hx
+++ b/qemu-monitor.hx
@@ -507,8 +507,8 @@ ETEXI
         .name       = "system_reset",
         .args_type  = "",
         .handler    = do_system_reset,
-        .user_print = NULL,
-        .user_error = NULL,
+        .user_print = monitor_user_noop,
+        .user_error = monitor_error_noop,
         .params     = "",
         .help       = "reset the system"
     },
-- 
1.6.5.rc2





reply via email to

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