Home
last modified time | relevance | path

Searched refs:wait4_options (Results 1 – 3 of 3) sorted by relevance

/external/strace/
Dstrace.c2407 static int wait4_options = __WALL; in trace() local
2418 pid = wait4(-1, &status, wait4_options, cflag ? &ru : NULL); in trace()
2419 if (pid < 0 && (wait4_options & __WALL) && errno == EINVAL) { in trace()
2421 wait4_options &= ~__WALL; in trace()
2423 pid = wait4(-1, &status, wait4_options, in trace()
2426 if (pid < 0 && !(wait4_options & __WALL) && errno == ECHILD) { in trace()
Dprocess.c1814 static const struct xlat wait4_options[] = { variable
1947 printflags(wait4_options, tcp->u_arg[2], "W???"); in printwaitn()
2168 printflags(wait4_options, tcp->u_arg[3], "W???"); in sys_waitid()
DChangeLog-CVS3887 * process.c [LINUX] (wait4_options): Fix __WCLONE value. Add