mailing list of musl libc
 help / color / mirror / code / Atom feed
d9d830717730d238182b249849d7aaa1100c9501 blob 151 bytes (raw)

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;
}
debug log:

solving d9d83071 ...
found d9d83071 in https://git.vuxu.org/mirror/musl/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).