1
0

sem_getvalue.c 151 B

12345678
  1. #include <semaphore.h>
  2. int sem_getvalue(sem_t *restrict sem, int *restrict valp)
  3. {
  4. int val = sem->__val[0];
  5. *valp = val < 0 ? 0 : val;
  6. return 0;
  7. }