4 * Copyright IBM, Corp. 2010
10 * This work is licensed under the terms of the GNU GPL, version 2. See
11 * the COPYING file in the top-level directory.
15 #include "qemu/osdep.h"
16 #include "block/thread-pool.h"
17 #include "qemu/coroutine.h"
20 /* Called from QEMU I/O thread. */
21 static void coroutine_enter_cb(void *opaque, int ret)
23 Coroutine *co = opaque;
24 qemu_coroutine_enter(co);
27 /* Called from worker thread. */
28 static int coroutine_enter_func(void *arg)
31 qemu_coroutine_enter(co);
35 void co_run_in_worker_bh(void *opaque)
37 Coroutine *co = opaque;
38 thread_pool_submit_aio(aio_get_thread_pool(qemu_get_aio_context()),
39 coroutine_enter_func, co, coroutine_enter_cb, co);