Lines Matching defs:tmpstat
748 int error, status, tmpstat, sig;
754 tmpstat = status & 0xffff;
755 if (WIFSIGNALED(tmpstat)) {
756 tmpstat = (tmpstat & 0xffffff80) |
757 bsd_to_linux_signal(WTERMSIG(tmpstat));
758 } else if (WIFSTOPPED(tmpstat)) {
759 tmpstat = (tmpstat & 0xffff00ff) |
760 (bsd_to_linux_signal(WSTOPSIG(tmpstat)) << 8);
763 tmpstat = linux_ptrace_status(td,
764 siginfo.si_pid, tmpstat);
767 } else if (WIFCONTINUED(tmpstat)) {
768 tmpstat = 0xffff;
770 error = copyout(&tmpstat, statusp, sizeof(int));