4 * Copyright Red Hat Inc., 2013
7 * Stefan Hajnoczi <stefanha@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
17 #include "block/aio.h"
18 #include "qemu/thread.h"
20 #define TYPE_IOTHREAD "iothread"
27 QemuMutex init_done_lock
;
28 QemuCond init_done_cond
; /* is thread initialization done? */
33 #define IOTHREAD(obj) \
34 OBJECT_CHECK(IOThread, obj, TYPE_IOTHREAD)
36 IOThread
*iothread_find(const char *id
);
37 char *iothread_get_id(IOThread
*iothread
);
38 AioContext
*iothread_get_aio_context(IOThread
*iothread
);
40 #endif /* IOTHREAD_H */