mirror of
https://github.com/fluencelabs/musl
synced 2025-06-06 19:41:34 +00:00
14 lines
220 B
C
14 lines
220 B
C
|
#include <semaphore.h>
|
||
|
#include <limits.h>
|
||
|
#include <errno.h>
|
||
|
|
||
|
int sem_init(sem_t *sem, int pshared, unsigned value)
|
||
|
{
|
||
|
if (value > SEM_VALUE_MAX) {
|
||
|
errno = EINVAL;
|
||
|
return -1;
|
||
|
}
|
||
|
sem->__val[0] = value;
|
||
|
return 0;
|
||
|
}
|