aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2016-06-23 10:18:23 +0200
committerMarkus Armbruster <armbru@redhat.com>2017-01-16 09:15:26 +0100
commit66c2f5a56ce1a1b85b133ad39ee7cc1a599126cf (patch)
tree758a973ef3c48c72302cb9fbf72422ba73c3c8d5 /docs
parent4f19a01b3e066b56bf22d83ff12d840c9a213dff (diff)
downloadqemu-66c2f5a56ce1a1b85b133ad39ee7cc1a599126cf.zip
qemu-66c2f5a56ce1a1b85b133ad39ee7cc1a599126cf.tar.gz
qemu-66c2f5a56ce1a1b85b133ad39ee7cc1a599126cf.tar.bz2
qmp-commands: move 'query-events' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/qmp-commands.txt28
1 files changed, 0 insertions, 28 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt
index 817cc5a..f51ffbf 100644
--- a/docs/qmp-commands.txt
+++ b/docs/qmp-commands.txt
@@ -1607,34 +1607,6 @@ Example:
Note: This example has been shortened as the real response is too long.
-query-events
---------------
-
-List QMP available events.
-
-Each event is represented by a json-object, the returned value is a json-array
-of all events.
-
-Each json-object contains:
-
-- "name": event's name (json-string)
-
-Example:
-
--> { "execute": "query-events" }
-<- {
- "return":[
- {
- "name":"SHUTDOWN"
- },
- {
- "name":"RESET"
- }
- ]
- }
-
-Note: This example has been shortened as the real response is too long.
-
query-qmp-schema
----------------