Home
last modified time | relevance | path

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

/freebsd/sys/compat/linux/
H A Dlinux_misc.c724 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()
[all …]
/freebsd/sys/kern/
H A Dsubr_stats.c1227 struct voistat *tmpstat; local
1348 tmpstat = BLOB_OFFSET(tpl_sb, voi->stats_off);
1349 tmpstat->stype = VS_STYPE_VOISTATE;
1350 tmpstat->flags = 0;
1351 tmpstat->dtype = VSD_DTYPE_VOISTATE;
1352 newstatdataidx = tmpstat->dsz =
1354 tmpstat->data_off = tpl_sb->statsdata_off;
1358 tmpstat = BLOB_OFFSET(tpl_sb, voi->stats_off +
1360 KASSERT(tmpstat->stype < 0, ("voistat %p "
1361 "already initialised", tmpstat));
[all …]