diff options
author | Markus Armbruster <armbru@redhat.com> | 2010-01-20 13:07:35 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-01-26 14:55:11 -0600 |
commit | 81a1b45ac7a3a2d4536b3827defdcbabdb221051 (patch) | |
tree | 3fb7781b5b45e48fd2bba2e1979a5ff4d83ad62e /qemu-monitor.hx | |
parent | 64a34bb14c0e358a6b2f14805e59ef25bf62d6d5 (diff) | |
download | qemu-81a1b45ac7a3a2d4536b3827defdcbabdb221051.tar.gz qemu-81a1b45ac7a3a2d4536b3827defdcbabdb221051.tar.bz2 qemu-81a1b45ac7a3a2d4536b3827defdcbabdb221051.zip |
monitor: convert do_cpu_set() to QObject, QError
Signed-off-by: Markus Armbruster <armbru@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 1aa78186ba..415734a464 100644 --- a/qemu-monitor.hx +++ b/qemu-monitor.hx @@ -573,7 +573,8 @@ ETEXI .args_type = "index:i", .params = "index", .help = "set the default CPU", - .mhandler.cmd = do_cpu_set, + .user_print = monitor_user_noop, + .mhandler.cmd_new = do_cpu_set, }, STEXI |