zig/lib/libc/musl/src/thread/sem_trywait.c
2023-06-20 12:55:38 -04:00

14 lines
243 B
C
Vendored

#include <semaphore.h>
#include <limits.h>
#include "pthread_impl.h"
int sem_trywait(sem_t *sem)
{
int val;
while ((val=sem->__val[0]) & SEM_VALUE_MAX) {
if (a_cas(sem->__val, val, val-1)==val) return 0;
}
errno = EAGAIN;
return -1;
}