diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2009-10-16 12:23:44 -0300 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-27 12:28:57 -0500 |
commit | 18f5a8bfc7919a382baa37252001ef82833e61d3 (patch) | |
tree | 8b75f7a409923dc6d4d0bdd157d08473e775edf9 /qemu-monitor.hx | |
parent | 57e09454a4b1ede7040600346f5c6d9c8ddcd9c1 (diff) |
monitor: Convert do_physical_memory_save() to QObject
Note that errors are not being converted yet.
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 70b9125cfe..1c605bd84b 100644 --- a/qemu-monitor.hx +++ b/qemu-monitor.hx @@ -680,7 +680,8 @@ ETEXI .args_type = "val:l,size:i,filename:s", .params = "addr size file", .help = "save to disk physical memory dump starting at 'addr' of size 'size'", - .mhandler.cmd = do_physical_memory_save, + .user_print = monitor_user_noop, + .mhandler.cmd_new = do_physical_memory_save, }, STEXI |