/openbmc/linux/tools/testing/selftests/perf_events/ |
H A D | remove_on_exec.c | 148 ASSERT_EQ(waitpid(pid_exec, &tmp, WNOHANG), 0); /* Child is running. */ in TEST_F() 157 EXPECT_EQ(waitpid(pid_exec, &tmp, WNOHANG), 0); /* Should still be running. */ in TEST_F() 190 EXPECT_EQ(waitpid(pid_exec, &tmp, WNOHANG), 0); /* Should still be running. */ in TEST_F() 219 EXPECT_EQ(waitpid(pids[i], &tmp, WNOHANG), 0); in TEST_F()
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/openl2tp/openl2tp/ |
H A D | 0001-Use-1-instead-of-WAIT_ANY.patch | 24 - while (((pid = waitpid(WAIT_ANY, &status, (waitfor ? 0: WNOHANG))) != -1) && (pid != 0)) { 25 + while (((pid = waitpid(-1, &status, (waitfor ? 0: WNOHANG))) != -1) && (pid != 0)) {
|
/openbmc/linux/include/uapi/linux/ |
H A D | wait.h | 5 #define WNOHANG 0x00000001 macro
|
/openbmc/linux/tools/testing/selftests/kvm/ |
H A D | hardware_disable_test.c | 138 if (pid != waitpid(pid, &status, WNOHANG)) in wait_for_child_setup() 174 r = waitpid(pid, &s, WNOHANG); in main()
|
/openbmc/linux/tools/testing/selftests/timers/ |
H A D | skew_consistency.c | 57 while (pid != waitpid(pid, &ret, WNOHANG)) { in main()
|
H A D | clocksource-switch.c | 177 while (pid != waitpid(pid, &status, WNOHANG)) in main()
|
/openbmc/openbmc/poky/meta/recipes-core/glib-2.0/glib-2.0/ |
H A D | 0001-meson.build-do-not-enable-pidfd-features-on-native-g.patch | 21 waitid (P_PIDFD, 0, &child_info, WEXITED | WNOHANG);
|
/openbmc/linux/tools/testing/selftests/ptrace/ |
H A D | vmaccess.c | 62 k = waitpid(-1, &s, WNOHANG); in TEST()
|
/openbmc/linux/arch/um/os-Linux/ |
H A D | util.c | 153 while ((pid = waitpid(-1, NULL, WNOHANG | __WALL)) > 0) in os_dump_core()
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-extended/python-blivet/python3-blivet/ |
H A D | 0005-fix-incorrect-timeout-while-system-time-changed.patch | 44 os.waitpid(-1, os.WNOHANG)
|
H A D | 0003-support-infinit-timeout.patch | 32 os.waitpid(-1, os.WNOHANG)
|
H A D | 0002-run_program-support-timeout.patch | 34 + os.waitpid(-1, os.WNOHANG)
|
/openbmc/openbmc/poky/meta/recipes-devtools/expect/expect/ |
H A D | 0001-configure.in.patch | 17 AC_MSG_CHECKING([if any value exists for WNOHANG])
|
/openbmc/linux/tools/testing/selftests/rlimits/ |
H A D | rlimits-per-userns.c | 120 pid_t ret = waitpid(child[i], &wstatus[i], WNOHANG); in main()
|
/openbmc/linux/scripts/ |
H A D | generate_initcall_order.pl | 167 $pid = waitpid(-1, WNOHANG);
|
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/functional/ |
H A D | functional_helpers.py | 38 os.waitpid(toaster_process, os.WNOHANG)
|
/openbmc/linux/tools/tracing/rtla/src/ |
H A D | timerlat_u.c | 188 pid = waitpid(-1, &wstatus, WNOHANG); in timerlat_u_dispatcher()
|
/openbmc/u-boot/test/py/ |
H A D | u_boot_spawn.py | 99 w = os.waitpid(self.pid, os.WNOHANG)
|
/openbmc/linux/tools/include/nolibc/ |
H A D | types.h | 112 #define WNOHANG 1 macro
|
/openbmc/linux/kernel/ |
H A D | exit.c | 1632 if (!retval && !(wo->wo_flags & WNOHANG)) { in do_wait() 1654 if (options & ~(WNOHANG|WNOWAIT|WEXITED|WSTOPPED|WCONTINUED| in kernel_waitid() 1701 wo.wo_flags |= WNOHANG; in kernel_waitid() 1704 if (!ret && !(options & WNOHANG) && (f_flags & O_NONBLOCK)) in kernel_waitid() 1752 if (options & ~(WNOHANG|WUNTRACED|WCONTINUED| in kernel_wait4()
|
/openbmc/linux/tools/testing/selftests/pidfd/ |
H A D | pidfd_wait.c | 213 ret = sys_waitid(P_PIDFD, pidfd, &info, WEXITED | WNOHANG, NULL); in TEST()
|
/openbmc/qemu/io/ |
H A D | channel-command.c | 111 ret = waitpid(ioc->pid, &status, WNOHANG); in qio_channel_command_abort()
|
/openbmc/linux/tools/testing/selftests/nolibc/ |
H A D | nolibc-test.c | 919 CASE_TEST(waitpid_min); EXPECT_SYSER(1, waitpid(INT_MIN, &tmp, WNOHANG), -1, ESRCH); break; in run_syscall() 920 …CASE_TEST(waitpid_child); EXPECT_SYSER(1, waitpid(getpid(), &tmp, WNOHANG), -1, ECHILD); break; in run_syscall()
|
/openbmc/openbmc/poky/bitbake/bin/ |
H A D | bitbake-worker | 521 pid, status = os.waitpid(-1, os.WNOHANG)
|
/openbmc/qemu/tests/qtest/ |
H A D | libqtest.c | 161 pid = waitpid(pid, &s->wstatus, WNOHANG); in qtest_probe_child() 229 pid = waitpid(s->qemu_pid, &s->wstatus, WNOHANG); in qtest_wait_qemu()
|