diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2015-09-15 17:27:33 +0100 |
---|---|---|
committer | Daniel P. Berrange <berrange@redhat.com> | 2015-12-18 12:18:31 +0000 |
commit | d98e4eb7de93290f7921b0dbe869c7dd3c567945 (patch) | |
tree | 3f9d266d76b202a93b1bf7fd8a47affa4d521308 /io/Makefile.objs | |
parent | 195e14d0262c5676cb9ff4b253e4b2b15c19d3f0 (diff) | |
download | qemu-d98e4eb7de93290f7921b0dbe869c7dd3c567945.tar.gz qemu-d98e4eb7de93290f7921b0dbe869c7dd3c567945.tar.bz2 qemu-d98e4eb7de93290f7921b0dbe869c7dd3c567945.zip |
io: add QIOChannelBuffer class
Add a QIOChannel subclass that is capable of performing I/O
to/from a memory buffer. This implementation does not attempt
to support concurrent readers & writers. It is designed for
serialized access where by a single thread at a time may write
data, seek and then read data back out.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'io/Makefile.objs')
-rw-r--r-- | io/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/io/Makefile.objs b/io/Makefile.objs index 1a58ccb5c2..0e3de31a5a 100644 --- a/io/Makefile.objs +++ b/io/Makefile.objs @@ -1,4 +1,5 @@ io-obj-y = channel.o +io-obj-y += channel-buffer.o io-obj-y += channel-command.o io-obj-y += channel-file.o io-obj-y += channel-socket.o |