summaryrefslogtreecommitdiffstats
path: root/qapi-schema.json
diff options
context:
space:
mode:
authorMarc-André Lureau2016-06-23 13:39:05 +0200
committerMarkus Armbruster2017-01-16 09:15:29 +0100
commit43fef34a2938c2feda5b668bba01a7fb01a19308 (patch)
tree914bcbd9d404f01c8bf40383c5da70b0c2895dac /qapi-schema.json
parentqmp-commands: move 'closefd' doc to schema (diff)
downloadqemu-43fef34a2938c2feda5b668bba01a7fb01a19308.tar.gz
qemu-43fef34a2938c2feda5b668bba01a7fb01a19308.tar.xz
qemu-43fef34a2938c2feda5b668bba01a7fb01a19308.zip
qmp-commands: move 'add-fd' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r--qapi-schema.json8
1 files changed, 8 insertions, 0 deletions
diff --git a/qapi-schema.json b/qapi-schema.json
index b5c01367e4..35a2399cf1 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -4373,7 +4373,9 @@
# @opaque: #optional A free-form string that can be used to describe the fd.
#
# Returns: @AddfdInfo on success
+#
# If file descriptor was not received, FdNotSupplied
+#
# If @fdset-id is a negative value, InvalidParameterValue
#
# Notes: The list of fd sets is shared by all monitor connections.
@@ -4381,6 +4383,12 @@
# If @fdset-id is not specified, a new fd set will be created.
#
# Since: 1.2.0
+#
+# Example:
+#
+# -> { "execute": "add-fd", "arguments": { "fdset-id": 1 } }
+# <- { "return": { "fdset-id": 1, "fd": 3 } }
+#
##
{ 'command': 'add-fd', 'data': {'*fdset-id': 'int', '*opaque': 'str'},
'returns': 'AddfdInfo' }