diff options
Diffstat (limited to 'qemu-monitor.hx')
-rw-r--r-- | qemu-monitor.hx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/qemu-monitor.hx b/qemu-monitor.hx index 7f9d261cd9..8e51df032d 100644 --- a/qemu-monitor.hx +++ b/qemu-monitor.hx @@ -123,7 +123,7 @@ ETEXI .params = "", .help = "quit the emulator", .user_print = monitor_user_noop, - .mhandler.cmd_new = do_quit, + .cmd_new_ret = do_quit, }, STEXI @@ -303,7 +303,7 @@ ETEXI .params = "", .help = "stop emulation", .user_print = monitor_user_noop, - .mhandler.cmd_new = do_stop, + .cmd_new_ret = do_stop, }, STEXI @@ -494,7 +494,7 @@ ETEXI .params = "", .help = "reset the system", .user_print = monitor_user_noop, - .mhandler.cmd_new = do_system_reset, + .cmd_new_ret = do_system_reset, }, STEXI @@ -510,7 +510,7 @@ ETEXI .params = "", .help = "send system power down event", .user_print = monitor_user_noop, - .mhandler.cmd_new = do_system_powerdown, + .cmd_new_ret = do_system_powerdown, }, STEXI @@ -791,7 +791,7 @@ ETEXI .params = "", .help = "cancel the current VM migration", .user_print = monitor_user_noop, - .mhandler.cmd_new = do_migrate_cancel, + .cmd_new_ret = do_migrate_cancel, }, STEXI @@ -806,7 +806,7 @@ ETEXI .params = "value", .help = "set maximum speed (in bytes) for migrations", .user_print = monitor_user_noop, - .mhandler.cmd_new = do_migrate_set_speed, + .cmd_new_ret = do_migrate_set_speed, }, STEXI @@ -821,7 +821,7 @@ ETEXI .params = "value", .help = "set maximum tolerated downtime (in seconds) for migrations", .user_print = monitor_user_noop, - .mhandler.cmd_new = do_migrate_set_downtime, + .cmd_new_ret = do_migrate_set_downtime, }, STEXI @@ -1132,7 +1132,7 @@ ETEXI .params = "", .help = "enable QMP capabilities", .user_print = monitor_user_noop, - .mhandler.cmd_new = do_qmp_capabilities, + .cmd_new_ret = do_qmp_capabilities, }, STEXI |