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