Searched defs:wait4_options (Results 1 - 2 of 2) sorted by relevance

/external/strace/
H A Dprocess.c1814 static const struct xlat wait4_options[] = { variable in typeref:struct:xlat
1947 printflags(wait4_options, tcp->u_arg[2], "W???");
2168 printflags(wait4_options, tcp->u_arg[3], "W???");
H A Dstrace.c2407 static int wait4_options = __WALL; local
2418 pid = wait4(-1, &status, wait4_options, cflag ? &ru : NULL);
2419 if (pid < 0 && (wait4_options & __WALL) && errno == EINVAL) {
2421 wait4_options &= ~__WALL;
2423 pid = wait4(-1, &status, wait4_options,
2426 if (pid < 0 && !(wait4_options & __WALL) && errno == ECHILD) {

Completed in 75 milliseconds