diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 13:07:39 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:15:27 +0100 |
commit | 253cdee14864806d1aaa397ece3fddbcbdcc1734 (patch) | |
tree | 25cb8cfae89c1a23e316f1e0e6def3653fcae87f | |
parent | 3815d0de51124db3da50abaebbb4ec5f1d531f53 (diff) |
qmp-commands: move 'system_wakeup' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
-rw-r--r-- | docs/qmp-commands.txt | 12 | ||||
-rw-r--r-- | qapi-schema.json | 6 |
2 files changed, 6 insertions, 12 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt index 083273d7dc..2361e84c8f 100644 --- a/docs/qmp-commands.txt +++ b/docs/qmp-commands.txt @@ -113,18 +113,6 @@ Example: -> { "execute": "screendump", "arguments": { "filename": "/tmp/image" } } <- { "return": {} } -system_wakeup -------------- - -Wakeup guest from suspend. - -Arguments: None. - -Example: - --> { "execute": "system_wakeup" } -<- { "return": {} } - device_add ---------- diff --git a/qapi-schema.json b/qapi-schema.json index babac12e16..5a2716ceb3 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -2306,6 +2306,12 @@ # Since: 1.1 # # Returns: nothing. +# +# Example: +# +# -> { "execute": "system_wakeup" } +# <- { "return": {} } +# ## { 'command': 'system_wakeup' } |