HomeSort by: relevance | last modified time | path
    Searched refs:WSTOPSIG (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/sys/
wait.h 13 #define WSTOPSIG(__x) (int)(WIFSTOPPED(__x) ? (int)((((unsigned int)__x) >> 8) & 0xff) : -1)
  /src/external/gpl2/xcvs/dist/lib/
wait.h 34 #ifndef WSTOPSIG
35 #define WSTOPSIG(w) (((w) >> 8) & 0xff)
  /src/external/bsd/openldap/dist/include/ac/
wait.h 48 #ifndef WSTOPSIG
49 # define WSTOPSIG(s) LDAP_HI(s)
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/sys/
wait.d 121 WSTOPSIG
147 extern (D) int WSTOPSIG( int status ) { return WEXITSTATUS( status ); }
163 extern (D) int WSTOPSIG( int status ) { return status >> 8; }
179 extern (D) int WSTOPSIG( int status ) { return status >> 8; }
195 extern (D) int WSTOPSIG( int status ) { return status >> 8; }
211 extern (D) int WSTOPSIG(int status) { return (status >> 8) & 0xFF; }
227 extern (D) int WSTOPSIG( int status ) { return status >> 8; }
239 extern (D) int WSTOPSIG(int status) { return (status >> 8) & 0x7f; }
249 extern (D) int WSTOPSIG( int status ) { return WEXITSTATUS(status); }
261 alias WEXITSTATUS WSTOPSIG;
    [all...]
  /src/sys/sys/
wait.h 63 #define WSTOPSIG(x) ((int)(((unsigned int)_W_INT(x)) >> 8) & 0xff)
  /src/tests/lib/libc/sys/
t_ptrace_threads_wait.h 886 WSTOPSIG(status));
888 ATF_CHECK_EQ_MSG(info.psi_siginfo.si_signo, WSTOPSIG(status),
889 "lwp=%d, WSTOPSIG=%d, psi_siginfo=%d", info.psi_lwpid,
890 WSTOPSIG(status), info.psi_siginfo.si_signo);
892 if (WSTOPSIG(status) != SIGTRAP) {
896 ATF_CHECK_EQ_MSG(WSTOPSIG(status), expected_sig,
898 expected_sig, WSTOPSIG(status));
928 signal_handle != TCSH_DISCARD && WSTOPSIG(status) != SIGTRAP
929 ? WSTOPSIG(status) : 0) != -1);
t_wait.c 198 ATF_REQUIRE(WIFSTOPPED(st) && WSTOPSIG(st) == SIGSTOP);
268 ATF_REQUIRE(WIFSTOPPED(st) && WSTOPSIG(st) == SIGSTOP);
t_ptrace_wait.h 388 strlcpy(st, strsignal(WSTOPSIG(status)), sizeof(st));
391 ATF_REQUIRE_EQ_MSG(WSTOPSIG(status), expected,
403 FORKEE_ASSERT_EQ(WSTOPSIG(status), expected);
t_ptrace_sigchld.c 105 ATF_REQUIRE_EQ(WSTOPSIG(info->si_status), expected_status);
  /src/external/bsd/libproc/dist/
proc_util.c 67 if (phdl->status == PS_STOP && WSTOPSIG(phdl->wstat) != SIGTRAP)
68 pending = WSTOPSIG(phdl->wstat);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stoptheworld_linux_libcdep.cc 176 if (WIFSTOPPED(status) && WSTOPSIG(status) != SIGSTOP) {
178 (void*)(uptr)WSTOPSIG(status));
  /src/external/bsd/tmux/dist/
job.c 369 if (WSTOPSIG(status) == SIGTTIN || WSTOPSIG(status) == SIGTTOU)
server.c 515 if (WSTOPSIG(status) == SIGTTIN || WSTOPSIG(status) == SIGTTOU)
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_stoptheworld_linux_libcdep.cpp 175 if (WIFSTOPPED(status) && WSTOPSIG(status) != SIGSTOP) {
177 (void*)(uptr)WSTOPSIG(status));
  /src/external/bsd/atf/dist/tools/
process.cpp 371 rv << "stopped(" << WSTOPSIG(mutable_status);
  /src/bin/sh/
jobs.c 514 st = WSTOPSIG(ps->status);
687 retval = WSTOPSIG(status) + 128;
1494 st = WSTOPSIG(status) + 128;
  /src/tests/lib/libc/gen/
t_siginfo.c 155 ATF_REQUIRE_EQ(WSTOPSIG(info->si_status), status);
  /src/usr.bin/make/
compat.c 379 status = WSTOPSIG(reason);
job.c 1958 switch (WSTOPSIG(status)) {
1969 job->node->name, WSTOPSIG(status));
  /src/external/bsd/am-utils/dist/conf/nfs_prot/
nfs_prot_nextstep.h 258 #define WSTOPSIG(status) (int)(WIFSTOPPED(status) ? \
  /src/external/gpl2/groff/dist/src/roff/groff/
pipeline.c 55 #define WSTOPSIG(s) (((s) >> 8) & 0377)
  /src/external/gpl3/gcc.old/dist/gcc/
system.h 426 #ifndef WSTOPSIG
427 #define WSTOPSIG WEXITSTATUS
  /src/lib/libutil/
passwd.c 279 raise(WSTOPSIG(pstat));
  /src/external/bsd/cron/dist/
crontab.c 501 (void)kill(getpid(), WSTOPSIG(waiter));
  /src/external/bsd/openldap/dist/tests/progs/
slapd-tester.c 1096 (long) pid, (int) WSTOPSIG(status) );

Completed in 65 milliseconds

1 2