Lines Matching refs:status
31 < to catch the signal, check that the correct status was returned
77 int nsig, exno, nexno, status;
115 while ((npid = wait(&status)) != pid
123 while ((npid = waitpid(pid, &status, 0)) != -1
128 nsig = status & 0177;
129 core = status & 0200;
130 nexno = (status & 0xff00) >> 8;
133 nsig = WTERMSIG(status);
135 core = WCOREDUMP(status);
137 nexno = WIFEXITED(status);
146 " The status of the process is %d \n",
147 status);
152 "returned, the status of the process is "
153 "%d \n", status);
164 " signal sent was 9, the status"
166 status);
171 "number returned,the status of the"
172 " process is %d\n", status);