mirror of
https://github.com/fluencelabs/musl
synced 2025-06-04 18:41:34 +00:00
1. make sem_[timed]wait interruptible by signals, per POSIX 2. keep a waiter count in order to avoid unnecessary futex wake syscalls
12 lines
238 B
C
12 lines
238 B
C
#include <semaphore.h>
|
|
#include "pthread_impl.h"
|
|
|
|
int sem_trywait(sem_t *sem)
|
|
{
|
|
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;
|
|
}
|