Home
last modified time | relevance | path

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

/freebsd/lib/libproc/
H A Dproc_util.c68 if (phdl->status == PS_STOP && WSTOPSIG(phdl->wstat) != SIGTRAP) in proc_continue()
69 pending = WSTOPSIG(phdl->wstat); in proc_continue()
165 phdl->wstat = status; in proc_wstatus()
177 return (phdl->wstat); in proc_getwstat()
H A D_libproc.h69 int wstat; /* Process wait status. */ member
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/
H A Ddtest.pl441 $wstat = $?;
442 $wifexited = ($wstat & 0xFF) == 0;
443 $wexitstat = ($wstat >> 8) & 0xFF;
444 $wtermsig = ($wstat & 0x7F);
/freebsd/cddl/contrib/opensolaris/cmd/plockstat/
H A Dplockstat.c676 int wstat = proc_getwstat(P); in prochandler()
695 if (WIFSIGNALED(wstat)) { in prochandler()
697 proc_signame(WTERMSIG(wstat), in prochandler()
699 } else if (WEXITSTATUS(wstat) != 0) { in prochandler()
701 pid, WEXITSTATUS(wstat)); in prochandler()
/freebsd/contrib/lib9p/backend/
H A Dbackend.h44 int (*wstat)(void *, struct l9p_request *); member
H A Dfs.c3012 backend->wstat = fs_wstat; in l9p_backend_fs_init()
/freebsd/sys/dev/usb/wlan/
H A Dif_run.c2625 uint16_t (*wstat)[3]; in run_drain_fifo() local
2655 wstat = &(sc->wcid_stats[wcid]); in run_drain_fifo()
2656 (*wstat)[RUN_TXCNT]++; in run_drain_fifo()
2658 (*wstat)[RUN_SUCCESS]++; in run_drain_fifo()
2669 (*wstat)[RUN_TXCNT] += retry; in run_drain_fifo()
2670 (*wstat)[RUN_RETRY] += retry; in run_drain_fifo()
2686 uint16_t (*wstat)[3]; in run_iter_func() local
2723 if (wstat == &(sc->wcid_stats[0]) || in run_iter_func()
2727 txs->nretries = (*wstat)[RUN_RETRY]; in run_iter_func()
2729 txs->nframes = (*wstat)[RUN_TXCNT]; in run_iter_func()
[all …]
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_cc.c1860 int wstat, estat; in dt_preproc() local
1959 } while (waitpid(pid, &wstat, 0) == -1 && errno == EINTR); in dt_preproc()
1964 dt_dprintf("%s returned exit status 0x%x\n", dtp->dt_cpp_path, wstat); in dt_preproc()
1965 estat = WIFEXITED(wstat) ? WEXITSTATUS(wstat) : -1; in dt_preproc()
/freebsd/contrib/lib9p/
H A Drequest.c974 error = be->wstat != NULL ? be->wstat(be->softc, req) : ENOSYS; in l9p_dispatch_twstat()
/freebsd/contrib/lib9p/pytest/
H A Dclient.py612 clnt.wstat(d1fid, name=b'd2')
H A Dp9conn.py1024 def wstat(self, fid, statobj=None, **kwargs): member in P9Client