mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
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>
This commit is contained in:
parent
195e14d026
commit
d98e4eb7de
6 changed files with 363 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue