summaryrefslogblamecommitdiff
path: root/src/thread/sem_init.c
blob: e8e419cf74976cbee14e3efcfa0f3929199966b7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                     
                          

                 
#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;
	sem->__val[1] = 0;
	return 0;
}