]> git.proxmox.com Git - mirror_qemu.git/blame - qapi-event.json
qapi event: convert SUSPEND
[mirror_qemu.git] / qapi-event.json
CommitLineData
84321831
WX
1##
2# @SHUTDOWN
3#
4# Emitted when the virtual machine has shutdown, possibly indicating that QEMU
5# is about about to exit.
6#
7# Note: If the command-line option "-no-shutdown" has been specified, qemu will
8# not exit, and a STOP event will eventually follow the SHUTDOWN event
9#
10# Since: 0.12.0
11##
12{ 'event': 'SHUTDOWN' }
0aab9ec3
WX
13
14##
15# @POWERDOWN
16#
17# Emitted when the virtual machine is powered down through the power control
18# system, such as via ACPI.
19#
20# Since: 0.12.0
21##
22{ 'event': 'POWERDOWN' }
a6330785
WX
23
24##
25# @RESET
26#
27# Emitted when the virtual machine is reset
28#
29# Since: 0.12.0
30##
31{ 'event': 'RESET' }
a4e15de9
WX
32
33##
34# @STOP
35#
36# Emitted when the virtual machine is stopped
37#
38# Since: 0.12.0
39##
40{ 'event': 'STOP' }
591c48fb
WX
41
42##
43# @RESUME
44#
45# Emitted when the virtual machine resumes execution
46#
47# Since: 0.12.0
48##
49{ 'event': 'RESUME' }
1d11a95a
WX
50
51##
52# @SUSPEND
53#
54# Emitted when guest enters a hardware suspension state, for example, S3 state,
55# which is sometimes called standby state
56#
57# Since: 1.1
58##
59{ 'event': 'SUSPEND' }