repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move msghdr and cmsghdr out of bits/socket.h
[musl.git]
/
src
/
signal
/
sigwait.c
blob
c8822eea49837bfc732ca38a330af89bc8582288
1
#include <signal.h>
2
3
int
sigwait
(
const
sigset_t
*
restrict mask
,
int
*
restrict sig
)
4
{
5
siginfo_t si
;
6
if
(
sigtimedwait
(
mask
, &
si
,
0
) <
0
)
7
return
-
1
;
8
*
sig
=
si
.
si_signo
;
9
return
0
;
10
}