use a separate signal from SIGCANCEL for SIGEV_THREAD timers
[musl] / src / thread / sem_trywait.c
index c5370c7..beb7aa5 100644 (file)
@@ -3,9 +3,8 @@
 
 int sem_trywait(sem_t *sem)
 {
-       int val = a_fetch_add(sem->__val, -1);
-       if (val > 0) return 0;
-       if (!a_fetch_add(sem->__val, 1))
+       if (a_fetch_add(sem->__val, -1) > 0) return 0;
+       if (!a_fetch_add(sem->__val, 1) && sem->__val[1])
                __wake(sem->__val, 1, 0);
        errno = EAGAIN;
        return -1;