Searched refs:ECHILD (Results 1 - 25 of 40) sorted by relevance

12

/freebsd-current/contrib/netbsd-tests/lib/libc/sys/
H A Dt_wait_noproc.c49 "Test that wait(2) returns ECHILD for no child");
54 ATF_REQUIRE_ERRNO(ECHILD, wait(NULL) == -1);
62 "Test that waitpid(2) returns ECHILD for WAIT_ANY and option %s",
68 ATF_REQUIRE_ERRNO(ECHILD, waitpid(WAIT_ANY, NULL, TWAIT_OPTION) == -1);
75 "Test that waitid(2) returns ECHILD for P_ALL and option %s",
81 ATF_REQUIRE_ERRNO(ECHILD,
90 "Test that wait3(2) returns ECHILD for no child");
95 ATF_REQUIRE_ERRNO(ECHILD, wait3(NULL, TWAIT_OPTION, NULL) == -1);
102 "Test that wait4(2) returns ECHILD for WAIT_ANY and option %s",
108 ATF_REQUIRE_ERRNO(ECHILD,
[all...]
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dzcp_global.c40 {"ECHILD", ECHILD},
/freebsd-current/lib/libc/tests/gen/
H A Dposix_spawn_test.c53 ATF_REQUIRE_MSG(errno == ECHILD, "errno was not ECHILD: %d", errno);
89 ATF_REQUIRE(waitres == -1 && errno == ECHILD);
/freebsd-current/contrib/llvm-project/libcxx/include/
H A Derrno.h329 # ifndef ECHILD
330 # define ECHILD 9963 macro
/freebsd-current/tools/test/stress2/misc/
H A Dptrace.sh78 if (errno == ECHILD)
/freebsd-current/sys/xen/
H A Derror.h43 [XEN_ECHILD] = ECHILD,
/freebsd-current/contrib/lib9p/pytest/
H A Dlerrno.py16 ECHILD = 10 variable
151 ECHILD: 'No child processes',
/freebsd-current/sys/contrib/xen/
H A Derrno.h71 XEN_ERRNO(ECHILD, 10) /* No child processes */
/freebsd-current/sys/sys/
H A Derrno.h57 #define ECHILD 10 /* No child processes */ macro
/freebsd-current/tests/sys/kern/
H A Dptrace_test.c216 REQUIRE_EQ(errno, ECHILD);
263 REQUIRE_EQ(errno, ECHILD);
680 REQUIRE_EQ(errno, ECHILD);
731 REQUIRE_EQ(errno, ECHILD);
791 REQUIRE_EQ(errno, ECHILD);
880 REQUIRE_EQ(errno, ECHILD);
943 REQUIRE_EQ(errno, ECHILD);
1006 REQUIRE_EQ(errno, ECHILD);
1157 REQUIRE_EQ(errno, ECHILD);
1220 REQUIRE_EQ(errno, ECHILD);
[all...]
H A Dreaper.c51 ATF_REQUIRE(pid == -1 && errno == ECHILD);
103 ATF_REQUIRE(pid == -1 && errno == ECHILD);
152 ATF_REQUIRE(pid == -1 && errno == ECHILD);
238 ATF_REQUIRE(pid == -1 && errno == ECHILD);
/freebsd-current/contrib/netbsd-tests/kernel/
H A Dt_ptrace_wait.c116 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
183 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
231 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
291 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
551 TWAIT_REQUIRE_FAILURE(ECHILD,
615 TWAIT_REQUIRE_FAILURE(ECHILD,
1019 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
1074 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
1131 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
1186 TWAIT_REQUIRE_FAILURE(ECHILD, wpi
[all...]
/freebsd-current/cddl/lib/libdtrace/
H A Derrno.d48 inline int ECHILD = 10;
49 #pragma D binding "1.0" ECHILD
256 errno == ECHILD ? "No child processes" :
/freebsd-current/contrib/netbsd-tests/kernel/arch/amd64/
H A Dt_ptrace_wait.c137 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
194 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
267 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
345 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
451 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
557 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
663 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
769 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
870 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
971 TWAIT_REQUIRE_FAILURE(ECHILD, wpi
[all...]
/freebsd-current/contrib/netbsd-tests/kernel/arch/i386/
H A Dt_ptrace_wait.c129 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
/freebsd-current/contrib/llvm-project/libcxx/include/__system_error/
H A Derrc.h59 no_child_process, // ECHILD
158 no_child_process = ECHILD,
/freebsd-current/stand/liblua/
H A Dlerrno.c57 ENTRY(ECHILD),
/freebsd-current/contrib/capsicum-test/
H A Dprocdesc.cc160 EXPECT_EQ(ECHILD, errno);
530 EXPECT_EQ(errno, ECHILD);
644 EXPECT_EQ(ECHILD, errno);
830 EXPECT_EQ(errno, ECHILD);
868 EXPECT_EQ(ECHILD, errno);
/freebsd-current/contrib/netbsd-tests/include/
H A Dt_errno.c143 #ifdef ECHILD
147 atf_tc_fail_nonfatal("ECHILD not defined");
/freebsd-current/usr.sbin/bsdinstall/runconsoles/
H A Dchild.c125 if (pid == -1 && errno == ECHILD && grandchild_pid == 0)
/freebsd-current/contrib/kyua/utils/process/
H A Doperations_test.cpp443 ATF_REQUIRE_EQ(ECHILD, e.original_errno());
/freebsd-current/tests/sys/vm/
H A Dshared_shadow_inval_test.c348 } while (pid != -1 || errno != ECHILD);
/freebsd-current/sys/contrib/openzfs/cmd/zed/
H A Dzed_exec.c223 if (pid == 0 || errno == ECHILD)
/freebsd-current/lib/libpam/modules/pam_ssh/
H A Dpam_ssh.c437 (waitpid(pid, &status, 0) == -1 && errno != ECHILD))
/freebsd-current/contrib/ntp/libntp/
H A Dwork_fork.c194 else if (errno != ECHILD)

Completed in 232 milliseconds

12