2 * QEMU coroutine implementation
4 * Copyright IBM, Corp. 2011
7 * Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
8 * Kevin Wolf <kwolf@redhat.com>
10 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
11 * See the COPYING.LIB file in the top-level directory.
15 #ifndef QEMU_COROUTINE_H
16 #define QEMU_COROUTINE_H
19 #include "qemu-queue.h"
20 #include "qemu-timer.h"
23 * Coroutines are a mechanism for stack switching and can be used for
24 * cooperative userspace threading. These functions provide a simple but
25 * useful flavor of coroutines that is suitable for writing sequential code,
26 * rather than callbacks, for operations that need to give up control while
27 * waiting for events to complete.
29 * These functions are re-entrant and may be used outside the global mutex.
33 * Mark a function that executes in coroutine context
35 * Functions that execute in coroutine context cannot be called directly from
36 * normal functions. In the future it would be nice to enable compiler or
37 * static checker support for catching such errors. This annotation might make
38 * it possible and in the meantime it serves as documentation.
42 * static void coroutine_fn foo(void) {
48 typedef struct Coroutine Coroutine
;
51 * Coroutine entry point
53 * When the coroutine is entered for the first time, opaque is passed in as an
56 * When this function returns, the coroutine is destroyed automatically and
57 * execution continues in the caller who last entered the coroutine.
59 typedef void coroutine_fn
CoroutineEntry(void *opaque
);
62 * Create a new coroutine
64 * Use qemu_coroutine_enter() to actually transfer control to the coroutine.
66 Coroutine
*qemu_coroutine_create(CoroutineEntry
*entry
);
69 * Transfer control to a coroutine
71 * The opaque argument is passed as the argument to the entry point when
72 * entering the coroutine for the first time. It is subsequently ignored.
74 void qemu_coroutine_enter(Coroutine
*coroutine
, void *opaque
);
77 * Transfer control back to a coroutine's caller
79 * This function does not return until the coroutine is re-entered using
80 * qemu_coroutine_enter().
82 void coroutine_fn
qemu_coroutine_yield(void);
85 * Get the currently executing coroutine
87 Coroutine
*coroutine_fn
qemu_coroutine_self(void);
90 * Return whether or not currently inside a coroutine
92 * This can be used to write functions that work both when in coroutine context
93 * and when not in coroutine context. Note that such functions cannot use the
94 * coroutine_fn annotation since they work outside coroutine context.
96 bool qemu_in_coroutine(void);
101 * CoQueues are a mechanism to queue coroutines in order to continue executing
102 * them later. They provide the fundamental primitives on which coroutine locks
105 typedef struct CoQueue
{
106 QTAILQ_HEAD(, Coroutine
) entries
;
110 * Initialise a CoQueue. This must be called before any other operation is used
113 void qemu_co_queue_init(CoQueue
*queue
);
116 * Adds the current coroutine to the CoQueue and transfers control to the
117 * caller of the coroutine.
119 void coroutine_fn
qemu_co_queue_wait(CoQueue
*queue
);
122 * Adds the current coroutine to the head of the CoQueue and transfers control to the
123 * caller of the coroutine.
125 void coroutine_fn
qemu_co_queue_wait_insert_head(CoQueue
*queue
);
128 * Restarts the next coroutine in the CoQueue and removes it from the queue.
130 * Returns true if a coroutine was restarted, false if the queue is empty.
132 bool qemu_co_queue_next(CoQueue
*queue
);
135 * Restarts all coroutines in the CoQueue and leaves the queue empty.
137 void qemu_co_queue_restart_all(CoQueue
*queue
);
140 * Checks if the CoQueue is empty.
142 bool qemu_co_queue_empty(CoQueue
*queue
);
146 * Provides a mutex that can be used to synchronise coroutines
148 typedef struct CoMutex
{
154 * Initialises a CoMutex. This must be called before any other operation is used
157 void qemu_co_mutex_init(CoMutex
*mutex
);
160 * Locks the mutex. If the lock cannot be taken immediately, control is
161 * transferred to the caller of the current coroutine.
163 void coroutine_fn
qemu_co_mutex_lock(CoMutex
*mutex
);
166 * Unlocks the mutex and schedules the next coroutine that was waiting for this
169 void coroutine_fn
qemu_co_mutex_unlock(CoMutex
*mutex
);
171 typedef struct CoRwlock
{
178 * Initialises a CoRwlock. This must be called before any other operation
179 * is used on the CoRwlock
181 void qemu_co_rwlock_init(CoRwlock
*lock
);
184 * Read locks the CoRwlock. If the lock cannot be taken immediately because
185 * of a parallel writer, control is transferred to the caller of the current
188 void qemu_co_rwlock_rdlock(CoRwlock
*lock
);
191 * Write Locks the mutex. If the lock cannot be taken immediately because
192 * of a parallel reader, control is transferred to the caller of the current
195 void qemu_co_rwlock_wrlock(CoRwlock
*lock
);
198 * Unlocks the read/write lock and schedules the next coroutine that was
199 * waiting for this lock to be run.
201 void qemu_co_rwlock_unlock(CoRwlock
*lock
);
204 * Yield the coroutine for a given duration
206 * Note this function uses timers and hence only works when a main loop is in
207 * use. See main-loop.h and do not use from qemu-tool programs.
209 void coroutine_fn
co_sleep_ns(QEMUClock
*clock
, int64_t ns
);
211 #endif /* QEMU_COROUTINE_H */