Sign in
cobalt
/
cobalt
/
3cd5432aaed8f14f27f66ade1b51aa71df939492
/
.
/
third_party
/
musl
/
src
/
thread
/
sem_getvalue.c
blob: d9d830717730d238182b249849d7aaa1100c9501 [
file
] [
log
] [
blame
]
#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
;
}