Lines Matching refs:tmpstat
936 int error, status, tmpstat; in linux_common_wait() local
959 tmpstat = status & 0xffff; in linux_common_wait()
960 if (WIFSIGNALED(tmpstat)) { in linux_common_wait()
961 tmpstat = (tmpstat & 0xffffff80) | in linux_common_wait()
962 bsd_to_linux_signal(WTERMSIG(tmpstat)); in linux_common_wait()
963 } else if (WIFSTOPPED(tmpstat)) { in linux_common_wait()
964 tmpstat = (tmpstat & 0xffff00ff) | in linux_common_wait()
965 (bsd_to_linux_signal(WSTOPSIG(tmpstat)) << 8); in linux_common_wait()
968 tmpstat = linux_ptrace_status(td, in linux_common_wait()
969 siginfo.si_pid, tmpstat); in linux_common_wait()
972 } else if (WIFCONTINUED(tmpstat)) { in linux_common_wait()
973 tmpstat = 0xffff; in linux_common_wait()
975 error = copyout(&tmpstat, statusp, sizeof(int)); in linux_common_wait()