aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2016-06-23 10:57:59 +0200
committerMarkus Armbruster <armbru@redhat.com>2017-01-16 09:15:26 +0100
commitfdf4d34f8398099431888d3f7522a7b71df0ba58 (patch)
tree807ee1e84966df7444d9257f09b2a0231a3f999c /docs
parent5c5bee64187269d9ae6deb122626920a963b0f2f (diff)
downloadqemu-fdf4d34f8398099431888d3f7522a7b71df0ba58.zip
qemu-fdf4d34f8398099431888d3f7522a7b71df0ba58.tar.gz
qemu-fdf4d34f8398099431888d3f7522a7b71df0ba58.tar.bz2
qmp-commands: move 'query-iothreads' 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.txt30
1 files changed, 0 insertions, 30 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt
index e0d827a..e7d47d3 100644
--- a/docs/qmp-commands.txt
+++ b/docs/qmp-commands.txt
@@ -1945,36 +1945,6 @@ Example:
]
}
-query-iothreads
----------------
-
-Returns a list of information about each iothread.
-
-Note this list excludes the QEMU main loop thread, which is not declared
-using the -object iothread command-line option. It is always the main thread
-of the process.
-
-Return a json-array. Each iothread is represented by a json-object, which contains:
-
-- "id": name of iothread (json-str)
-- "thread-id": ID of the underlying host thread (json-int)
-
-Example:
-
--> { "execute": "query-iothreads" }
-<- {
- "return":[
- {
- "id":"iothread0",
- "thread-id":3134
- },
- {
- "id":"iothread1",
- "thread-id":3135
- }
- ]
- }
-
query-pci
---------