diff options
author | Zhi Yong Wu <wuzhy@linux.vnet.ibm.com> | 2011-11-03 16:57:26 +0800 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2011-12-05 14:51:35 +0100 |
commit | e9e6295b28b331762e67d466f77ba07a349edbbc (patch) | |
tree | 8975b826cbd4014d7e1ca392034d117c988524c0 /qemu-coroutine.h | |
parent | 0563e191516289c9d2f282a8c50f2eecef2fa773 (diff) | |
download | qemu-e9e6295b28b331762e67d466f77ba07a349edbbc.tar.gz qemu-e9e6295b28b331762e67d466f77ba07a349edbbc.tar.bz2 qemu-e9e6295b28b331762e67d466f77ba07a349edbbc.zip |
CoQueue: introduce qemu_co_queue_wait_insert_head
Signed-off-by: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'qemu-coroutine.h')
-rw-r--r-- | qemu-coroutine.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/qemu-coroutine.h b/qemu-coroutine.h index b8fc4f4332..8a2e5d2a10 100644 --- a/qemu-coroutine.h +++ b/qemu-coroutine.h @@ -118,6 +118,12 @@ void qemu_co_queue_init(CoQueue *queue); void coroutine_fn qemu_co_queue_wait(CoQueue *queue); /** + * Adds the current coroutine to the head of the CoQueue and transfers control to the + * caller of the coroutine. + */ +void coroutine_fn qemu_co_queue_wait_insert_head(CoQueue *queue); + +/** * Restarts the next coroutine in the CoQueue and removes it from the queue. * * Returns true if a coroutine was restarted, false if the queue is empty. |