Sign in
cobalt
/
cobalt
/
97b64f26fb12c9eab352139c26f0b01d1cb6d0b9
/
.
/
third_party
/
musl
/
src
/
thread
/
sem_trywait.c
blob: 04edf46b524de72a575b1db7687f56d93fc1e291 [
file
] [
log
] [
blame
]
#include
<semaphore.h>
#include
"pthread_impl.h"
int
sem_trywait
(
sem_t
*
sem
)
{
int
val
;
while
((
val
=
sem
->
__val
[
0
])
>
0
)
{
int
new
=
val
-
1
-(
val
==
1
&&
sem
->
__val
[
1
]);
if
(
a_cas
(
sem
->
__val
,
val
,
new
)==
val
)
return
0
;
}
errno
=
EAGAIN
;
return
-
1
;
}