mirror of https://gitee.com/openkylin/qemu.git
monitor: Convert do_stop() to QObject
Patchworks-ID: 35343 Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
b223f35f4e
commit
e0c97bdef8
|
@ -599,7 +599,10 @@ static void do_singlestep(Monitor *mon, const QDict *qdict)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void do_stop(Monitor *mon, const QDict *qdict)
|
/**
|
||||||
|
* do_stop(): Stop VM execution
|
||||||
|
*/
|
||||||
|
static void do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
|
||||||
{
|
{
|
||||||
vm_stop(EXCP_INTERRUPT);
|
vm_stop(EXCP_INTERRUPT);
|
||||||
}
|
}
|
||||||
|
|
|
@ -287,7 +287,8 @@ ETEXI
|
||||||
.args_type = "",
|
.args_type = "",
|
||||||
.params = "",
|
.params = "",
|
||||||
.help = "stop emulation",
|
.help = "stop emulation",
|
||||||
.mhandler.cmd = do_stop,
|
.user_print = monitor_user_noop,
|
||||||
|
.mhandler.cmd_new = do_stop,
|
||||||
},
|
},
|
||||||
|
|
||||||
STEXI
|
STEXI
|
||||||
|
|
Loading…
Reference in New Issue