Home
last modified time | relevance | path

Searched refs:tmpstat (Results 1 – 1 of 1) sorted by relevance

/trueos/sys/compat/linux/
HDlinux_misc.c856 int error, tmpstat; in linux_common_wait() local
858 error = kern_wait(td, pid, &tmpstat, options, ru); in linux_common_wait()
863 tmpstat &= 0xffff; in linux_common_wait()
864 if (WIFSIGNALED(tmpstat)) in linux_common_wait()
865 tmpstat = (tmpstat & 0xffffff80) | in linux_common_wait()
866 BSD_TO_LINUX_SIGNAL(WTERMSIG(tmpstat)); in linux_common_wait()
867 else if (WIFSTOPPED(tmpstat)) in linux_common_wait()
868 tmpstat = (tmpstat & 0xffff00ff) | in linux_common_wait()
869 (BSD_TO_LINUX_SIGNAL(WSTOPSIG(tmpstat)) << 8); in linux_common_wait()
870 error = copyout(&tmpstat, status, sizeof(int)); in linux_common_wait()