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"
19 #include "qom/object.h"
20 #include "sysemu/event-loop-base.h"
22 #define TYPE_IOTHREAD "iothread"
25 EventLoopBase parent_obj
;
29 bool run_gcontext
; /* whether we should run gcontext */
30 GMainContext
*worker_context
;
32 QemuSemaphore init_done_sem
; /* is thread init done? */
33 bool stopping
; /* has iothread_stop() been called? */
34 bool running
; /* should iothread_run() continue? */
37 /* AioContext poll parameters */
42 typedef struct IOThread IOThread
;
44 DECLARE_INSTANCE_CHECKER(IOThread
, IOTHREAD
,
47 char *iothread_get_id(IOThread
*iothread
);
48 IOThread
*iothread_by_id(const char *id
);
49 AioContext
*iothread_get_aio_context(IOThread
*iothread
);
50 GMainContext
*iothread_get_g_main_context(IOThread
*iothread
);
53 * Helpers used to allocate iothreads for internal use. These
54 * iothreads will not be seen by monitor clients when query using
57 IOThread
*iothread_create(const char *id
, Error
**errp
);
58 void iothread_stop(IOThread
*iothread
);
59 void iothread_destroy(IOThread
*iothread
);
62 * Returns true if executing withing IOThread context,
65 bool qemu_in_iothread(void);
67 #endif /* IOTHREAD_H */