diff options
author | Fam Zheng | 2017-04-10 14:06:12 +0200 |
---|---|---|
committer | Fam Zheng | 2017-04-11 14:07:15 +0200 |
commit | ba9e75ceef93000e624ae55faf2e498f96be2ec7 (patch) | |
tree | bab82b42b7d107886212f07ac47cbe096277d339 /include | |
parent | tests/block-job-txn: Don't start block job before adding to txn (diff) | |
download | qemu-ba9e75ceef93000e624ae55faf2e498f96be2ec7.tar.gz qemu-ba9e75ceef93000e624ae55faf2e498f96be2ec7.tar.xz qemu-ba9e75ceef93000e624ae55faf2e498f96be2ec7.zip |
coroutine: Extract qemu_aio_coroutine_enter
It's a variant of qemu_coroutine_enter with an explicit AioContext
parameter.
Signed-off-by: Fam Zheng <famz@redhat.com>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/coroutine.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/qemu/coroutine.h b/include/qemu/coroutine.h index e60beaff81..a4509bd977 100644 --- a/include/qemu/coroutine.h +++ b/include/qemu/coroutine.h @@ -77,6 +77,11 @@ void qemu_coroutine_enter(Coroutine *coroutine); void qemu_coroutine_enter_if_inactive(Coroutine *co); /** + * Transfer control to a coroutine and associate it with ctx + */ +void qemu_aio_coroutine_enter(AioContext *ctx, Coroutine *co); + +/** * Transfer control back to a coroutine's caller * * This function does not return until the coroutine is re-entered using |