From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43176) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VYCXP-0004tp-QV for qemu-devel@nongnu.org; Mon, 21 Oct 2013 06:16:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VYCXG-0006xL-F9 for qemu-devel@nongnu.org; Mon, 21 Oct 2013 06:16:39 -0400 Received: from e28smtp06.in.ibm.com ([122.248.162.6]:57585) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VYCXF-0006wt-Pe for qemu-devel@nongnu.org; Mon, 21 Oct 2013 06:16:30 -0400 Received: from /spool/local by e28smtp06.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 21 Oct 2013 15:46:27 +0530 Received: from d28relay03.in.ibm.com (d28relay03.in.ibm.com [9.184.220.60]) by d28dlp01.in.ibm.com (Postfix) with ESMTP id 640AAE005D for ; Mon, 21 Oct 2013 15:47:53 +0530 (IST) Received: from d28av03.in.ibm.com (d28av03.in.ibm.com [9.184.220.65]) by d28relay03.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r9LAJCfI38797470 for ; Mon, 21 Oct 2013 15:49:12 +0530 Received: from d28av03.in.ibm.com (localhost [127.0.0.1]) by d28av03.in.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id r9LAGMrf016360 for ; Mon, 21 Oct 2013 15:46:23 +0530 From: Wenchao Xia Date: Mon, 21 Oct 2013 10:16:05 +0800 Message-Id: <1382321765-29052-7-git-send-email-xiawenc@linux.vnet.ibm.com> In-Reply-To: <1382321765-29052-1-git-send-email-xiawenc@linux.vnet.ibm.com> References: <1382321765-29052-1-git-send-email-xiawenc@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 6/6] qapi: add doc for QEvent List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, armbru@redhat.com, lcapitulino@redhat.com, stefanha@redhat.com, pbonzini@redhat.com, Wenchao Xia Signed-off-by: Wenchao Xia --- 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