/external/ltp/testcases/kernel/syscalls/exit/ |
exit02.c | 68 int pid, npid, sig, nsig, exno, nexno, status; local 140 * nexno is the exit number returned by wait 142 nexno = status / 256; 143 if (nexno != exno) { 145 "number %d", nexno);
|
exit01.c | 40 int pid, npid, sig, nsig, exno, nexno, status; local 92 * nexno is the exit number returned by wait 94 nexno = status / 256; 95 if (nexno != exno) {
|
/external/ltp/testcases/kernel/syscalls/waitpid/ |
waitpid01.c | 65 int exno, nexno, status; local 117 * nexno is the exit number returned by 120 nexno = WEXITSTATUS(status); 121 if (nexno != 0) {
|
waitpid02.c | 71 int nexno, status; local 128 * nexno is the exit number returned by 131 nexno = WEXITSTATUS(status); 132 if (nexno != 0) {
|
waitpid05.c | 79 int exno, nexno, status; local 183 * nexno is the exit number returned 186 nexno = status / 256; 187 if (nexno != 0) {
|
/external/ltp/testcases/kernel/syscalls/kill/ |
kill11.c | 94 int nsig, nexno, status; local 131 nexno = WIFEXITED(status); 150 if (nexno != 0) { 153 nexno);
|
kill12.c | 77 int nsig, exno, nexno, status; local 130 nexno = (status & 0xff00) >> 8; 137 nexno = WIFEXITED(status); 157 /* nexno is the exit number returned by wait 161 if (nexno != 0) { 169 else if (nexno != 1) {
|