Lines Matching refs:wait3
29 * @tc.desc : Test the wait3 function to wait3 for the child process
39 pid_t wait3_for_pind = wait3(&status, options, &ru);
41 t_error("%s wait3 get pid is %d are not want %d\n", __func__, wait3_for_pind, pid);
44 t_error("%s wait3 get status is %d are not 0\n", __func__, status);
50 t_error("%s wait3 fork error\n");
56 * @tc.desc : Test the result of the wait3 function when the exit code of the child process is not 0
66 pid_t wait3_for_pind = wait3(&status, options, &ru);
68 t_error("%s wait3 get pid is %d are not want %d\n", __func__, wait3_for_pind, pid);
71 t_error("%s wait3 get status is 0\n", __func__);
77 t_error("%s wait3 fork error\n");