diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2015-09-15 17:27:33 +0100 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 19:28:20 -0600 |
commit | 8845853f520eeaaeed4dcf110eabb525630c767d (patch) | |
tree | a35bb6aaa3580d64c57c6a17672ec837ca85e34e /io/Makefile.objs | |
parent | 3fd583616568f45162787db4919b155ff916e213 (diff) | |
download | hqemu-8845853f520eeaaeed4dcf110eabb525630c767d.zip hqemu-8845853f520eeaaeed4dcf110eabb525630c767d.tar.gz |
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 1a58ccb..0e3de31 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 |