summaryrefslogtreecommitdiff
path: root/src/thread/sem_getvalue.c
blob: d9d830717730d238182b249849d7aaa1100c9501 (plain) (blame)
1
2
3
4
5
6
7
8
#include <semaphore.h>

int sem_getvalue(sem_t *restrict sem, int *restrict valp)
{
	int val = sem->__val[0];
	*valp = val < 0 ? 0 : val;
	return 0;
}