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. Signed-off-by: Izumi Tsutsui <tsut...@ceres.dti.ne.jp> --- util/qemu-thread-posix.c | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/util/qemu-thread-posix.c b/util/qemu-thread-posix.c index 4489abf..db7a15b 100644 --- a/util/qemu-thread-posix.c +++ b/util/qemu-thread-posix.c @@ -172,10 +172,9 @@ void qemu_sem_post(QemuSemaphore *sem) pthread_mutex_lock(&sem->lock); if (sem->count == INT_MAX) { rc = EINVAL; - } else if (sem->count++ < 0) { - rc = pthread_cond_signal(&sem->cond); } else { - rc = 0; + sem->count++; + rc = pthread_cond_signal(&sem->cond); } pthread_mutex_unlock(&sem->lock); if (rc != 0) { @@ -207,19 +206,21 @@ int qemu_sem_timedwait(QemuSemaphore *sem, int ms) struct timespec ts; #if defined(__APPLE__) || defined(__NetBSD__) + rc = 0; compute_abs_deadline(&ts, ms); pthread_mutex_lock(&sem->lock); - --sem->count; - while (sem->count < 0) { + while (sem->count <= 0) { rc = pthread_cond_timedwait(&sem->cond, &sem->lock, &ts); if (rc == ETIMEDOUT) { - ++sem->count; break; } if (rc != 0) { error_exit(rc, __func__); } } + if (rc != ETIMEDOUT) { + --sem->count; + } pthread_mutex_unlock(&sem->lock); return (rc == ETIMEDOUT ? -1 : 0); #else @@ -251,10 +252,10 @@ void qemu_sem_wait(QemuSemaphore *sem) { #if defined(__APPLE__) || defined(__NetBSD__) pthread_mutex_lock(&sem->lock); - --sem->count; - while (sem->count < 0) { + while (sem->count <= 0) { pthread_cond_wait(&sem->cond, &sem->lock); } + --sem->count; pthread_mutex_unlock(&sem->lock); #else int rc; -- 1.8.0.1