OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:child_status
(Results
1 - 3
of
3
) sorted by null
/external/valgrind/main/memcheck/tests/
file_locking.c
113
int
child_status
;
local
116
wait_result = wait4(fork_result, &
child_status
, 0, 0);
/external/libppp/src/
exec.c
266
static int
child_status
; /* This variable is abused ! */
local
302
child_status
= 0;
318
_exit(
child_status
); /* The error from exec() ! */
339
child_status
= errno; /* Only works for vfork() */
340
printf("execvp failed: %s: %s\r\n", *argv, strerror(
child_status
));
341
_exit(
child_status
);
/external/oprofile/daemon/
init.c
298
int
child_status
;
local
299
wait(&
child_status
);
301
if (WIFEXITED(
child_status
) && (!WEXITSTATUS(
child_status
))) {
305
WEXITSTATUS(
child_status
));
Completed in 2018 milliseconds