[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 12/15] qapi: add QMP put-event command
From: |
Anthony Liguori |
Subject: |
[Qemu-devel] [PATCH 12/15] qapi: add QMP put-event command |
Date: |
Fri, 11 Mar 2011 17:05:42 -0600 |
This is needed for libqmp to support events. put-event is used to disconnect
from signals.
Signed-off-by: Anthony Liguori <address@hidden>
diff --git a/qmp-schema.json b/qmp-schema.json
index e0789d0..17db1cb 100644
--- a/qmp-schema.json
+++ b/qmp-schema.json
@@ -110,3 +110,18 @@
# Since: 0.14.0
##
{ 'command': 'qmp_capabilities' }
+
+##
+# @put_event:
+#
+# Disconnect a signal. This command is used to disconnect from a signal based
+# on the handle returned by a signal accessor.
+#
+# @tag: the handle returned by a signal accessor.
+#
+# Returns: Nothing on success.
+# If @tag is not a valid handle, InvalidParameterValue
+#
+# Since: 0.15.0
+##
+{ 'command': 'put-event', 'data': {'tag': 'int'} }
--
1.7.0.4
- [Qemu-devel] [PATCH 06/15] qapi: add code generators for QMP command marshaling, (continued)
- [Qemu-devel] [PATCH 06/15] qapi: add code generators for QMP command marshaling, Anthony Liguori, 2011/03/11
- [Qemu-devel] [PATCH 02/15] qapi: add code generator for type marshallers, Anthony Liguori, 2011/03/11
- [Qemu-devel] [PATCH 14/15] qapi: add test-libqmp, Anthony Liguori, 2011/03/11
- [Qemu-devel] [PATCH 15/15] qapi: generate HTML report for test-libqmp, Anthony Liguori, 2011/03/11
- [Qemu-devel] [PATCH 13/15] qapi: add code generator for libqmp (v2), Anthony Liguori, 2011/03/11
- [Qemu-devel] [PATCH 12/15] qapi: add QMP put-event command,
Anthony Liguori <=
- [Qemu-devel] Re: [PATCH 00/15] QAPI Round 1 (core code generator) (v2), Luiz Capitulino, 2011/03/16
Re: [Qemu-devel] Re: [PATCH 00/15] QAPI Round 1 (core code generator) (v2), Anthony Liguori, 2011/03/16