Home
last modified time | relevance | path

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

/freebsd-11-stable/sys/compat/linux/
HDlinux_misc.c972 int error, tmpstat; in linux_common_wait() local
974 error = kern_wait(td, pid, &tmpstat, options, ru); in linux_common_wait()
979 tmpstat &= 0xffff; in linux_common_wait()
980 if (WIFSIGNALED(tmpstat)) in linux_common_wait()
981 tmpstat = (tmpstat & 0xffffff80) | in linux_common_wait()
982 bsd_to_linux_signal(WTERMSIG(tmpstat)); in linux_common_wait()
983 else if (WIFSTOPPED(tmpstat)) in linux_common_wait()
984 tmpstat = (tmpstat & 0xffff00ff) | in linux_common_wait()
985 (bsd_to_linux_signal(WSTOPSIG(tmpstat)) << 8); in linux_common_wait()
986 else if (WIFCONTINUED(tmpstat)) in linux_common_wait()
[all …]