Searched defs:child_ret (Results 1 - 6 of 6) sorted by relevance

/external/linux-kselftest/tools/testing/selftests/futex/functional/
H A Dfutex_requeue_pi_mismatched_ops.c37 int child_ret = 0; variable
50 child_ret = futex_wait(&f1, f1, NULL, FUTEX_PRIVATE_FLAG);
51 if (child_ret < 0) {
52 child_ret = -errno;
55 return (void *)&child_ret;
132 ret = child_ret;
H A Dfutex_wait_uninitialized_heap.c43 static int child_ret; variable
59 child_ret = RET_PASS;
65 child_ret = RET_ERROR;
117 ret = child_ret;
/external/linux-kselftest/tools/testing/selftests/powerpc/math/
H A Dfpu_syscall.c33 int child_ret; local
41 waitpid(fork_pid, &child_ret, 0);
42 if (ret || child_ret)
57 int child_ret; local
66 child_ret = ret = 1;
70 waitpid(pid2, &child_ret, 0);
75 ret |= child_ret;
78 waitpid(pid, &child_ret, 0);
82 FAIL_IF(ret || child_ret);
H A Dvmx_syscall.c34 int child_ret; local
42 waitpid(fork_pid, &child_ret, 0);
43 if (ret || child_ret)
58 int child_ret; local
66 * Couldn't fork, ensure child_ret is set and is a fail
68 ret = child_ret = 1;
71 waitpid(pid2, &child_ret, 0);
76 ret |= child_ret;
79 waitpid(pid, &child_ret, 0);
83 FAIL_IF(ret || child_ret);
[all...]
/external/ltp/testcases/kernel/syscalls/fanotify/
H A Dfanotify07.c103 int child_ret; local
110 SAFE_WAITPID(child_pid[i], &child_ret, 0);
111 if (!WIFSIGNALED(child_ret))
H A Dfanotify03.c124 int child_ret; local
133 SAFE_WAITPID(-1, &child_ret, 0);
135 if (WIFEXITED(child_ret) && WEXITSTATUS(child_ret) == 0)
138 tst_res(TFAIL, "child %s", tst_strstatus(child_ret));

Completed in 441 milliseconds