mirror of
https://github.com/fluencelabs/musl
synced 2025-05-21 11:41:29 +00:00
this is not required by the standard, but it's nicer than corrupting the state and rather inexpensive.
18 lines
341 B
C
18 lines
341 B
C
#include <semaphore.h>
|
|
#include "pthread_impl.h"
|
|
|
|
int sem_post(sem_t *sem)
|
|
{
|
|
int val, waiters;
|
|
do {
|
|
val = sem->__val[0];
|
|
waiters = sem->__val[1];
|
|
if (val == SEM_VALUE_MAX) {
|
|
errno = EOVERFLOW;
|
|
return -1;
|
|
}
|
|
} while (a_cas(sem->__val, val, val+1+(val<0)) != val);
|
|
if (val<0 || waiters) __wake(sem->__val, 1, 0);
|
|
return 0;
|
|
}
|