Sign in
cobalt
/
cobalt.git
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
process
/
waitid.c
blob: d688650d8555954f4cb970e7711a032a47dcef43 [
file
]
#include
<sys/wait.h>
#include
"syscall.h"
int
waitid
(
idtype_t
type
,
id_t
id
,
siginfo_t
*
info
,
int
options
)
{
return
syscall_cp
(
SYS_waitid
,
type
,
id
,
info
,
options
,
0
);
}