Searched refs:wait4 (Results 26 - 35 of 35) sorted by relevance

12

/freebsd-13-stable/tests/sys/audit/
H A Dprocess-control.c175 "wait4(2) call");
181 snprintf(pcregex, sizeof(pcregex), "wait4.*%d.*return,success", pid);
187 ATF_REQUIRE(wait4(-1, &status, 0, NULL) != -1);
204 "wait4(2) call");
210 snprintf(pcregex, sizeof(pcregex), "wait4.*%d.*return,failure", pid);
214 ATF_REQUIRE_EQ(-1, wait4(-1, NULL, 0, NULL));
/freebsd-13-stable/sbin/devd/
H A Ddevd.cc269 pid = ::wait4(savedpid, &pstat, 0, (struct rusage *)0);
/freebsd-13-stable/contrib/capsicum-test/
H A Dprocdesc.cc37 // Simulate pdwait4() with wait4(pdgetpid()); this won't work in capability mode.
44 return wait4(pid, status, options, ru);
H A Dlinux.cc750 EXPECT_EQ(child, wait4(child, &status, __WALL, NULL));
/freebsd-13-stable/sys/contrib/openzfs/etc/systemd/system-generators/
H A Dzfs-mount-generator.c993 while ((pid = wait4(-1, &status, 0, &usage)) != -1) {
/freebsd-13-stable/usr.sbin/ctld/
H A Dctld.c2382 pid = wait4(-1, &status, 0, NULL);
2384 pid = wait4(-1, &status, WNOHANG, NULL);
/freebsd-13-stable/contrib/tcsh/
H A Dsh.proc.c188 #ifdef __ANDROID__ /* no wait3, only wait4 */
189 pid = wait4(-1, &w,
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cpp732 return internal_syscall(SYSCALL(wait4), pid, (uptr)status, options,
H A Dsanitizer_common_interceptors.inc129 #define wait4 __wait450
2468 INTERCEPTOR(int, wait4, int pid, int *status, int options, void *rusage) {
2470 COMMON_INTERCEPTOR_ENTER(ctx, wait4, pid, status, options, rusage);
2474 int res = REAL(wait4)(pid, status, options, rusage);
2481 #define INIT_WAIT4 COMMON_INTERCEPT_FUNCTION(wait4);
/freebsd-13-stable/usr.sbin/pmcstudy/
H A Dpmcstudy.c163 pid = wait4(the_pid, &pstat, 0, (struct rusage *)0);

Completed in 110 milliseconds

12