Searched refs:childPid (Results 1 - 4 of 4) sorted by relevance
/test/xts/hats/kernel/syscalls/signal/kill/ |
H A D | KillApiTest.cpp | 58 pid_t childPid = fork(); in HWTEST_F() local 59 if (childPid == 0) { in HWTEST_F() 62 killRet = kill(childPid, SIGTERM); in HWTEST_F() 65 waitpidRet = waitpid(childPid, &status, WUNTRACED); in HWTEST_F() 66 EXPECT_EQ(waitpidRet, childPid); in HWTEST_F()
|
/test/xts/hats/kernel/syscalls/signal/tkill/ |
H A D | TkillApiTest.cpp | 56 pid_t childPid = fork(); in HWTEST_F() local 57 if (childPid == 0) { in HWTEST_F() 60 int ret = syscall(SYS_tkill, childPid, SIGTERM); in HWTEST_F() 63 pid_t waitret = waitpid(childPid, &status, 0); in HWTEST_F() 64 EXPECT_EQ(waitret, childPid); in HWTEST_F()
|
/test/xts/hats/kernel/syscalls/async/wait4/ |
H A D | Wait4ApiTest.cpp | 77 pid_t childPid = -1; in HWTEST_F() local 95 int retPid = wait4(childPid, &wstatus, options, nullptr); in HWTEST_F()
|
/test/xts/acts/kernel_lite/process_posix/src/ |
H A D | PidTest.cpp | 174 pid_t childPid = getpid();
in HWTEST_F() local 175 if (childPgid != childPid) {
in HWTEST_F() 176 LOG("child new pgid check fail, pid=%d, pgid:%d", childPid, childPgid);
in HWTEST_F()
|
Completed in 2 milliseconds