Lines Matching refs:tmpstat
725 int error, status, tmpstat, sig; in linux_common_wait() local
731 tmpstat = status & 0xffff; in linux_common_wait()
732 if (WIFSIGNALED(tmpstat)) { in linux_common_wait()
733 tmpstat = (tmpstat & 0xffffff80) | in linux_common_wait()
734 bsd_to_linux_signal(WTERMSIG(tmpstat)); in linux_common_wait()
735 } else if (WIFSTOPPED(tmpstat)) { in linux_common_wait()
736 tmpstat = (tmpstat & 0xffff00ff) | in linux_common_wait()
737 (bsd_to_linux_signal(WSTOPSIG(tmpstat)) << 8); in linux_common_wait()
740 tmpstat = linux_ptrace_status(td, in linux_common_wait()
741 siginfo.si_pid, tmpstat); in linux_common_wait()
744 } else if (WIFCONTINUED(tmpstat)) { in linux_common_wait()
745 tmpstat = 0xffff; in linux_common_wait()
747 error = copyout(&tmpstat, statusp, sizeof(int)); in linux_common_wait()