musl/src/thread/sem_trywait.c

12 lines
238 B
C
Raw Normal View History

2011-03-04 00:45:59 -05:00
#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);
2011-03-04 00:45:59 -05:00
errno = EAGAIN;
return -1;
}