diff options
author | Kevin Wolf <kwolf@redhat.com> | 2011-06-30 17:56:46 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2011-08-02 15:53:40 +0200 |
commit | b96e92470ab4a87268e8b174602eaea6c508003b (patch) | |
tree | 04cb3ff62f9f130bfc691541b7e17bd41ac5e534 /qemu-coroutine-int.h | |
parent | f9f05dc58c50d19ad762e6c1ce6b5def9814a4ed (diff) |
coroutines: Locks
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'qemu-coroutine-int.h')
-rw-r--r-- | qemu-coroutine-int.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qemu-coroutine-int.h b/qemu-coroutine-int.h index 64915c2fa5..d495615cf6 100644 --- a/qemu-coroutine-int.h +++ b/qemu-coroutine-int.h @@ -38,6 +38,7 @@ struct Coroutine { void *entry_arg; Coroutine *caller; QLIST_ENTRY(Coroutine) pool_next; + QTAILQ_ENTRY(Coroutine) co_queue_next; }; Coroutine *qemu_coroutine_new(void); |