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