note a leak that needs fixing eventually
[trinity.git] / syscalls / waitpid.c
blobf080d94b75c5bc127572b743e3ea6508c27d2297
1 /*
2 * SYSCALL_DEFINE3(waitpid, pid_t, pid, int __user *, stat_addr, int, options)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_waitpid = {
7 .name = "waitpid",
8 .num_args = 3,
9 .arg1name = "pid",
10 .arg1type = ARG_PID,
11 .arg2name = "stat_addr",
12 .arg2type = ARG_ADDRESS,
13 .arg3name = "options",