HomeSort by: relevance | last modified time | path
    Searched defs:child2 (Results 1 - 7 of 7) sorted by relevancy

  /src/tests/kernel/
t_zombie.c 130 pid_t child1, child2, pid; local in function:signal_raw
139 child2 = atf_utils_fork();
140 ATF_REQUIRE(child2 != -1);
141 if (child2 == 0) {
161 pid = waitpid(child2, &status, WEXITED);
162 ATF_REQUIRE_EQ(pid, child2);
169 /* Assert that child1 is still a zombie after collecting child2 */
  /src/tests/lib/libc/sys/
t_fork.c 278 pid_t child, child2, wpid; local in function:nested_raw
297 child2 = fork();
299 child2 = vfork();
301 child2 = __clone(clone_func, stack_base, flags, NULL);
305 ASSERT_NEQ(child2, -1);
308 if (child2 == 0)
312 wpid = waitpid(child2, &status, 0);
313 ASSERT_EQ(child2, wpid);
t_ptrace_clone_wait.h 36 pid_t child, child2 = 0, wpid; local in function:clone_body
66 SYSCALL_REQUIRE((child2 = __clone(clone_func, stack_base,
70 child2);
74 (wpid = TWAIT_GENERIC(child2, &status, WALLSIG), child2);
126 child2 = state.pe_other_pid;
127 DPRINTF("Reported ptrace event with forkee %d\n", child2);
130 "%d\n", TWAIT_FNAME, child2, child);
131 TWAIT_REQUIRE_SUCCESS(wpid = TWAIT_GENERIC(child2, &status, 0),
132 child2);
324 pid_t child, child2 = 0, wpid; variable in typeref:typename:pid_t
685 pid_t child, child2 = 0, wpid; variable in typeref:typename:pid_t
    [all...]
t_ptrace_fork_wait.h 36 pid_t child, child2 = 0, wpid; local in function:fork_body
66 FORKEE_ASSERT_EQ(posix_spawn(&child2,
70 FORKEE_ASSERT((child2 = fork()) != -1);
72 FORKEE_ASSERT((child2 = vfork()) != -1);
75 if (child2 == 0)
79 (wpid = TWAIT_GENERIC(child2, &status, 0), child2);
153 child2 = state.pe_other_pid;
154 DPRINTF("Reported ptrace event with forkee %d\n", child2);
157 "%d\n", TWAIT_FNAME, child2, child)
745 pid_t child, child2 = 0, wpid; variable in typeref:typename:pid_t
1220 pid_t child, child2 = 0, wpid; variable in typeref:typename:pid_t
1283 pid_t child, child2 = 0, wpid; local in function:TRACEME_VFORK_FORK_TEST
    [all...]
t_ptrace_topology_wait.h 40 pid_t child1, child2, wpid; local in function:ATF_TC_BODY
52 SYSCALL_REQUIRE((child2 = fork()) != -1);
53 if (child2 != 0) {
54 DPRINTF("Parent process PID=%d, child2's PID=%d\n",
55 getpid(), child2);
67 CHILD_TO_PARENT("child2 exiting", parent_child, msg);
82 DPRINTF("Wait for exiting of child2\n");
83 PARENT_FROM_CHILD("child2 exiting", parent_child, msg);
t_poll.c 67 child2(void) function in typeref:typename:void
76 (void)printf("child2 exit\n");
128 child2();
  /src/sys/external/bsd/drm2/dist/drm/i915/gvt/
opregion.c 134 struct efp_child_device_config child2; member in struct:vbt
198 v->child2.handle = DEVICE_TYPE_EFP3;
199 v->child2.device_type = DEVICE_TYPE_DP;
200 v->child2.dvo_port = DVO_PORT_DPC;
201 v->child2.aux_channel = DP_AUX_C;
202 v->child2.dp_compat = true;
203 v->child2.integrated_encoder = true;

Completed in 26 milliseconds