Statistics
| Branch: | Revision:

root / qemu-coroutine-int.h @ c0424934

History | View | Annotate | Download (1.7 kB)

# Date Author Comment
1bbbdabd 02/17/2012 04:33 pm Paolo Bonzini

coroutine: switch to QSLIST

QSLIST can be used for a free list, do it.

Signed-off-by: Paolo Bonzini <>
Signed-off-by: Anthony Liguori <>

b96e9247 08/02/2011 04:53 pm Kevin Wolf

coroutines: Locks

Signed-off-by: Kevin Wolf <>

00dccaf1 08/01/2011 01:14 pm Kevin Wolf

coroutine: introduce coroutines

Asynchronous code is becoming very complex. At the same time
synchronous code is growing because it is convenient to write.
Sometimes duplicate code paths are even added, one synchronous and the
other asynchronous. This patch introduces coroutines which allow code...