diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-02-25 11:50:55 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-03-13 10:27:46 +0100 |
commit | 548cbb36f415d6086f5252309ab5aa7634497ab5 (patch) | |
tree | 0035c279e903595567cd91981a9e572f34f583c8 /qapi-schema.json | |
parent | d9ac374f0def9a65340c1768c08e3271f4d7798d (diff) | |
download | qemu-548cbb36f415d6086f5252309ab5aa7634497ab5.tar.gz qemu-548cbb36f415d6086f5252309ab5aa7634497ab5.tar.bz2 qemu-548cbb36f415d6086f5252309ab5aa7634497ab5.zip |
chardev: add pipe support to qapi
This patch adds 'pipe' support to qapi and also switches over the
pipe chardev initialization to the new qapi code path.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index 70c2c07f4c..7ea32ed415 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3153,7 +3153,7 @@ ## # @ChardevHostdev: # -# Configuration info for device chardevs. +# Configuration info for device and pipe chardevs. # # @device: The name of the special file for the device, # i.e. /dev/ttyS0 on Unix or COM1: on Windows @@ -3220,6 +3220,7 @@ { 'union': 'ChardevBackend', 'data': { 'file' : 'ChardevFile', 'serial' : 'ChardevHostdev', 'parallel': 'ChardevHostdev', + 'pipe' : 'ChardevHostdev', 'socket' : 'ChardevSocket', 'pty' : 'ChardevDummy', 'null' : 'ChardevDummy', |