diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2009-10-07 13:41:58 -0300 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-08 21:17:19 -0500 |
commit | c80d259e31c7475a6438b5a098e1d401337c64d0 (patch) | |
tree | 74b5c61ce954dc47b65cf80ee5d561672c92f1d1 /qemu-monitor.hx | |
parent | e0c97bdef8be937df9aaf7d24733ba1e34d8721a (diff) | |
download | qemu-c80d259e31c7475a6438b5a098e1d401337c64d0.zip |
monitor: Convert do_system_reset() to QObject
Patchworks-ID: 35347
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-monitor.hx')
-rw-r--r-- | qemu-monitor.hx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qemu-monitor.hx b/qemu-monitor.hx index 8fcba2452e..b116b5ef80 100644 --- a/qemu-monitor.hx +++ b/qemu-monitor.hx @@ -467,7 +467,8 @@ ETEXI .args_type = "", .params = "", .help = "reset the system", - .mhandler.cmd = do_system_reset, + .user_print = monitor_user_noop, + .mhandler.cmd_new = do_system_reset, }, STEXI |