blob: a9d8cf552254c697ebcc6963c25345cf025a3a49 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include <semaphore.h>
#include <limits.h>
#include "pthread_impl.h"
int sem_post(sem_t *sem)
{
int val, new, waiters, priv = sem->__val[2];
do {
val = sem->__val[0];
waiters = sem->__val[1];
if ((val & SEM_VALUE_MAX) == SEM_VALUE_MAX) {
errno = EOVERFLOW;
return -1;
}
new = val + 1;
if (waiters <= 1)
new &= ~0x80000000;
} while (a_cas(sem->__val, val, new) != val);
if (val<0) __wake(sem->__val, waiters>1 ? 1 : -1, priv);
return 0;
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|