Signed-off-by: Wenchao Xia <xiaw...@linux.vnet.ibm.com> --- qapi-schema.json | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 56 insertions(+), 0 deletions(-)
diff --git a/qapi-schema.json b/qapi-schema.json index fbc1fab..0f966ab 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -33,6 +33,62 @@ # # QEMU event types # +# @SHUTDOWN: system shutdown +# +# @RESET: system resets +# +# @POWERDOWN: system power down, if it is suppoted +# +# @STOP: stops the emulation +# +# @RESUME: resumes the emulation, typically after system stop +# +# @VNC_CONNECTED: a vnc client has connected to system +# +# @VNC_INITIALIZED: system has initialized for a vnc client +# +# @VNC_DISCONNECTED: a vnc client has disconnected from system +# +# @BLOCK_IO_ERROR: block layer meets I/O error +# +# @RTC_CHANGE: rtc changes +# +# @WATCHDOG: watch dog performs a action +# +# @SPICE_CONNECTED: a spice client has connected to system +# +# @SPICE_INITIALIZED: system has initialized for a spice client +# +# @SPICE_DISCONNECTED: a spice client has disconnected from system +# +# @BLOCK_JOB_COMPLETED: a block job has been completed +# +# @BLOCK_JOB_CANCELLED: a block job has been cancelled +# +# @BLOCK_JOB_ERROR: a block job meets error +# +# @BLOCK_JOB_READY: a block job is ready +# +# @DEVICE_DELETED: a device has been deleted +# +# @DEVICE_TRAY_MOVED: a device tray's status has changed +# +# @NIC_RX_FILTER_CHANGED: the filter for receiving on a nic has been changed +# +# @SUSPEND: system suspends, typically request comes from guest +# +# @SUSPEND_DISK: system suspends to disk, typically request comes from guest +# +# @WAKEUP: system wakes up from suspend +# +# @BALLOON_CHANGE: system resource balloon status changes +# +# @SPICE_MIGRATE_COMPLETED: spice migration has been completed +# +# @GUEST_PANICKED: guest has panicked +# +# @BLOCK_IMAGE_CORRUPTED: block image has been corrupted +# # Since: 1.8 ## { 'enum': 'QEvent', -- 1.7.1