Statistics
| Branch: | Revision:

root / qemu-thread-posix.h @ 5f8ae8e2

History | View | Annotate | Download (447 Bytes)

# Date Author Comment
c166cb72 11/02/2012 08:07 pm Paolo Bonzini

semaphore: implement fallback counting semaphores with mutex+condvar

OpenBSD and Darwin do not have sem_timedwait. Implement a fallback
for them.

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

38b14db3 10/31/2012 10:45 am Paolo Bonzini

qemu-thread: add QemuSemaphore

The new thread pool will use semaphores instead of condition
variables, because QemuCond does not have qemu_cond_timedwait.
(I also like it more this way).

Signed-off-by: Paolo Bonzini <>

cc015e9a 03/13/2011 04:44 pm Paolo Bonzini

add Win32 IPI service

Signed-off-by: Paolo Bonzini <>
Signed-off-by: Blue Swirl <>

9257d46d 03/13/2011 04:44 pm Paolo Bonzini

add win32 qemu-thread implementation

For now, qemu_cond_timedwait and qemu_mutex_timedlock are left as
POSIX-only functions. They can be removed later, once the patches
that remove their uses are in.

Signed-off-by: Paolo Bonzini <>
Signed-off-by: Blue Swirl <>