diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2009-10-07 13:42:00 -0300 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-08 21:17:19 -0500 |
commit | a1f896a04161ed429532da3ff220776ca0b1fbc9 (patch) | |
tree | 63336b683922cb60bdd86fdd8578d32e9143322f /qemu-monitor.hx | |
parent | 4307666463cb94f22f59bb47f701ff2d4911aae0 (diff) | |
download | qemu-a1f896a04161ed429532da3ff220776ca0b1fbc9.zip qemu-a1f896a04161ed429532da3ff220776ca0b1fbc9.tar.gz qemu-a1f896a04161ed429532da3ff220776ca0b1fbc9.tar.bz2 |
monitor: Convert do_cont() to QObject
Appropriate error handling support will be needed to have
encrypted images working under the future machine protocol,
but this initial conversion will work with the current
user protocol.
Patchworks-ID: 35348
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 3efc716..8dca4f1 100644 --- a/qemu-monitor.hx +++ b/qemu-monitor.hx @@ -301,7 +301,8 @@ ETEXI .args_type = "", .params = "", .help = "resume emulation", - .mhandler.cmd = do_cont, + .user_print = monitor_user_noop, + .mhandler.cmd_new = do_cont, }, STEXI |