]> Git Repo - qemu.git/commit
semaphore: fix a hangup problem under load on NetBSD hosts.
authorIzumi Tsutsui <[email protected]>
Wed, 3 Jul 2013 08:58:14 +0000 (17:58 +0900)
committerAnthony Liguori <[email protected]>
Mon, 5 Aug 2013 16:48:00 +0000 (11:48 -0500)
commit79761c6681f0d1cc1c027116fcb4382d41ed3ece
tree9e2ac1f7b46d9a3d02b5cdfe545cfa45edafcc30
parente1d0fb378ae3bb4272124a12e3fe1a02c4745eb1
semaphore: fix a hangup problem under load on NetBSD hosts.

Fix following bugs in "fallback implementation of counting semaphores
with mutex+condvar" added in c166cb72f1676855816340666c3b618beef4b976:
 - waiting threads are not restarted properly if more than one threads
   are waiting unblock signals in qemu_sem_timedwait()
 - possible missing pthread_cond_signal(3) calls when waiting threads
   are returned by ETIMEDOUT
 - fix an uninitialized variable
The problem is analyzed by and fix is provided by Noriyuki Soda.

Also put additional cleanup suggested by Laszlo Ersek:
 - make QemuSemaphore.count unsigned (it won't be negative)
 - check a return value of in pthread_cond_wait() in qemu_sem_wait()

Signed-off-by: Izumi Tsutsui <[email protected]>
Reviewed-by: Laszlo Ersek <[email protected]>
Message-id: 1372841894[email protected]
Signed-off-by: Anthony Liguori <[email protected]>
include/qemu/thread-posix.h
util/qemu-thread-posix.c
This page took 0.02597 seconds and 4 git commands to generate.