Home
last modified time | relevance | path

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

/openbmc/linux/tools/testing/selftests/sync/
H A Dsync_test.c43 pid_t childpid; in run_test() local
47 childpid = fork(); in run_test()
49 if (childpid) { in run_test()
50 waitpid(childpid, &result, 0); in run_test()
/openbmc/linux/tools/usb/usbip/src/
H A Dusbipd.c344 pid_t childpid; in process_request() local
350 childpid = fork(); in process_request()
351 if (childpid == 0) { in process_request()
/openbmc/u-boot/common/
H A Dcli_hush.c1425 pid_t childpid; local
1432 while ((childpid = waitpid(-1, &status, attributes)) > 0) {
1436 if (fg_pipe->progs[i].pid == childpid) {
1447 while (prognum < pi->num_progs && pi->progs[prognum].pid != childpid) {
1455 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
1484 if (childpid == -1 && errno != ECHILD)