undo unwanted change for now (double check this one later)

This commit is contained in:
gbeauche 2005-11-22 21:57:59 +00:00
parent af7973a79c
commit 1f66e31423

View File

@ -136,8 +136,8 @@ int sem_post(sem_t* sem)
int sem_getvalue(sem_t* sem, int* sval)
{
*sval = sem->sem_value;
return 0;
errno = ENOSYS;
return -1;
}
}