Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
fusl
/
src
/
process
/
waitid.c
blob: b30340a48387767d01b05bfa18a2235389f02ee8 [
file
] [
log
] [
blame
]
#include
<sys/wait.h>
#include
"syscall.h"
#include
"libc.h"
int
waitid
(
idtype_t
type
,
id_t
id
,
siginfo_t
*
info
,
int
options
)
{
return
syscall_cp
(
SYS_waitid
,
type
,
id
,
info
,
options
,
0
);
}