Home | History | Annotate | Download | only in sys

Lines Matching defs:sta

56 	int sta;
73 (void)wait(&sta);
75 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != sig[i])
88 int rv, sta;
111 (void)wait(&sta);
113 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS) {
115 if (WEXITSTATUS(sta) == EINVAL)
118 if (WEXITSTATUS(sta) == ESRCH)
138 int sta;
195 (void)waitpid(cpid, &sta, 0);
200 (void)waitpid(ppid, &sta, 0);
202 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) == EPERM)
205 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS)
219 int i, sta;
250 (void)waitpid(ppid, &sta, 0);
252 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
266 int i, sta;
296 (void)waitpid(ppid, &sta, 0);
298 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)