mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
suspend: add system_wakeup monitor command
This patch adds the system_wakeup monitor command which will simply wake up suspended guests. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
da98c8eb4c
commit
9b9df25a47
6 changed files with 57 additions and 0 deletions
|
@ -209,6 +209,27 @@ Example:
|
|||
-> { "execute": "cont" }
|
||||
<- { "return": {} }
|
||||
|
||||
EQMP
|
||||
|
||||
{
|
||||
.name = "system_wakeup",
|
||||
.args_type = "",
|
||||
.mhandler.cmd_new = qmp_marshal_input_system_wakeup,
|
||||
},
|
||||
|
||||
SQMP
|
||||
system_wakeup
|
||||
-------------
|
||||
|
||||
Wakeup guest from suspend.
|
||||
|
||||
Arguments: None.
|
||||
|
||||
Example:
|
||||
|
||||
-> { "execute": "system_wakeup" }
|
||||
<- { "return": {} }
|
||||
|
||||
EQMP
|
||||
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue