Searched refs:wstat (Results 1 - 9 of 9) sorted by relevance

/freebsd-12-stable/gnu/usr.bin/gdb/gdbserver/
H A Dfbsd-low.c221 int wstat; local
228 wstat = fbsd_wait_for_event (thread);
229 } while (WIFSTOPPED (wstat));
398 int wstat; local
426 wstat = event_child->status_pending;
430 return wstat;
445 fbsd_wait_for_process (&event_child, &wstat);
456 if (! WIFSTOPPED (wstat))
464 return wstat;
476 return wstat;
725 int wstat, saved_tid; local
[all...]
/freebsd-12-stable/lib/libproc/
H A D_libproc.h71 int wstat; /* Process wait status. */ member in struct:proc_handle
H A Dproc_util.c71 if (phdl->status == PS_STOP && WSTOPSIG(phdl->wstat) != SIGTRAP)
72 pending = WSTOPSIG(phdl->wstat);
172 phdl->wstat = status;
184 return (phdl->wstat);
/freebsd-12-stable/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-12-stable/cddl/contrib/opensolaris/cmd/plockstat/
H A Dplockstat.c676 int wstat = proc_getwstat(P);
695 if (WIFSIGNALED(wstat)) {
697 proc_signame(WTERMSIG(wstat),
699 } else if (WEXITSTATUS(wstat) != 0) {
701 pid, WEXITSTATUS(wstat));
/freebsd-12-stable/contrib/gdb/gdb/
H A Dproc-api.c707 wait_with_trace (int *wstat, char *file, int line) argument
735 if (wstat)
736 *wstat = lstat;
H A Dprocfs.c3886 int wstat; local
3895 wstat = 0;
3923 wait_retval = wait (&wstat); /* "wait" for the child's exit */
3975 wstat = (what << 8) | 0177;
3996 wstat = 0;
4006 wstat = 0;
4011 int temp = wait (&wstat);
4066 wstat = (SIGTRAP << 8) | 0177;
4138 wstat = (SIGSTOP << 8) | 0177;
4169 wstat
[all...]
/freebsd-12-stable/sys/dev/usb/wlan/
H A Dif_run.c2625 uint16_t (*wstat)[3];
2655 wstat = &(sc->wcid_stats[wcid]);
2656 (*wstat)[RUN_TXCNT]++;
2658 (*wstat)[RUN_SUCCESS]++;
2669 (*wstat)[RUN_TXCNT] += retry;
2670 (*wstat)[RUN_RETRY] += retry;
2686 uint16_t (*wstat)[3];
2721 wstat = &(sc->wcid_stats[RUN_AID2WCID(ni->ni_associd)]);
2723 if (wstat == &(sc->wcid_stats[0]) ||
2724 wstat >
[all...]
/freebsd-12-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_cc.c1856 int wstat, estat; local
1955 } while (waitpid(pid, &wstat, 0) == -1 && errno == EINTR);
1960 dt_dprintf("%s returned exit status 0x%x\n", dtp->dt_cpp_path, wstat);
1961 estat = WIFEXITED(wstat) ? WEXITSTATUS(wstat) : -1;

Completed in 175 milliseconds