aboutsummaryrefslogtreecommitdiff
path: root/qemu-coroutine-int.h
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2011-06-30 17:56:46 +0200
committerKevin Wolf <kwolf@redhat.com>2011-08-02 15:53:40 +0200
commitb96e92470ab4a87268e8b174602eaea6c508003b (patch)
tree04cb3ff62f9f130bfc691541b7e17bd41ac5e534 /qemu-coroutine-int.h
parentf9f05dc58c50d19ad762e6c1ce6b5def9814a4ed (diff)
coroutines: Locks
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'qemu-coroutine-int.h')
-rw-r--r--qemu-coroutine-int.h1
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);