diff options
author | SeokYeon Hwang <syeon.hwang@samsung.com> | 2014-10-31 17:03:53 +0900 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-01-09 23:41:11 +0100 |
commit | 4d91558d60c229f34819329728cf46ff71e13935 (patch) | |
tree | e635f67d07c4d41af3b5c20a80b1f64a80c4925d /hw/9pfs/virtio-9p-coth.h | |
parent | 364c3e6b8dd7912e01d19122d791b8c8f6df4f6c (diff) |
9pfs: changed to use event_notifier instead of qemu_pipe
Changed to use event_notifier instead of qemu_pipe.
It is necessary for porting 9pfs to Windows and MacOS.
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/9pfs/virtio-9p-coth.h')
-rw-r--r-- | hw/9pfs/virtio-9p-coth.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/9pfs/virtio-9p-coth.h b/hw/9pfs/virtio-9p-coth.h index 86d5ed4169..4f51b250d1 100644 --- a/hw/9pfs/virtio-9p-coth.h +++ b/hw/9pfs/virtio-9p-coth.h @@ -21,8 +21,8 @@ #include <glib.h> typedef struct V9fsThPool { - int rfd; - int wfd; + EventNotifier e; + GThreadPool *pool; GAsyncQueue *completed; } V9fsThPool; |