Home
last modified time | relevance | path

Searched refs:WSTOPSIG (Results 1 – 25 of 49) sorted by relevance

12

/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/sys/
H A Dwait.d147 extern (D) int WSTOPSIG( int status ) { return WEXITSTATUS( status ); } in version()
163 extern (D) int WSTOPSIG( int status ) { return status >> 8; } in version()
179 extern (D) int WSTOPSIG( int status ) { return status >> 8; } in version()
195 extern (D) int WSTOPSIG( int status ) { return status >> 8; } in version()
211 extern (D) int WSTOPSIG(int status) { return (status >> 8) & 0xFF; } in version()
227 extern (D) int WSTOPSIG( int status ) { return status >> 8; } in version()
239 extern (D) int WSTOPSIG(int status) { return (status >> 8) & 0x7f; } in version()
249 extern (D) int WSTOPSIG( int status ) { return WEXITSTATUS(status); } in version()
261 alias WEXITSTATUS WSTOPSIG; in version() local
292 extern (D) int WSTOPSIG( int status ) { return WEXITSTATUS( status ); } in version()
/netbsd-src/external/gpl3/gdb/dist/gnulib/import/
H A Dsys_wait.in.h74 # ifndef WSTOPSIG
75 # define WSTOPSIG(x) (((x) >> 8) & 0x7f) macro
103 # define WSTOPSIG(x) 0
/netbsd-src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
H A Daarch64-dbreg-contents.c110 assert (WSTOPSIG (status) == SIGUSR1); in main()
125 if (WSTOPSIG (status) == SIGUSR2) in main()
131 assert (WSTOPSIG (status) == SIGTRAP); in main()
/netbsd-src/external/gpl2/xcvs/dist/lib/
H A Dwait.h34 #ifndef WSTOPSIG
35 #define WSTOPSIG(w) (((w) >> 8) & 0xff) macro
/netbsd-src/external/bsd/openldap/dist/include/ac/
H A Dwait.h48 #ifndef WSTOPSIG
49 # define WSTOPSIG(s) LDAP_HI(s) macro
/netbsd-src/tests/lib/libc/sys/
H A Dt_ptrace_threads_wait.h888 WSTOPSIG(status)); in thread_concurrent_test()
890 ATF_CHECK_EQ_MSG(info.psi_siginfo.si_signo, WSTOPSIG(status), in thread_concurrent_test()
892 WSTOPSIG(status), info.psi_siginfo.si_signo); in thread_concurrent_test()
894 if (WSTOPSIG(status) != SIGTRAP) { in thread_concurrent_test()
898 ATF_CHECK_EQ_MSG(WSTOPSIG(status), expected_sig, in thread_concurrent_test()
900 expected_sig, WSTOPSIG(status)); in thread_concurrent_test()
930 signal_handle != TCSH_DISCARD && WSTOPSIG(status) != SIGTRAP in thread_concurrent_test()
931 ? WSTOPSIG(status) : 0) != -1); in thread_concurrent_test()
H A Dt_ptrace_wait.h317 strlcpy(st, strsignal(WSTOPSIG(status)), sizeof(st)); in validate_status_stopped()
320 ATF_REQUIRE_EQ_MSG(WSTOPSIG(status), expected, in validate_status_stopped()
332 FORKEE_ASSERT_EQ(WSTOPSIG(status), expected); in forkee_status_stopped()
H A Dt_wait.c198 ATF_REQUIRE(WIFSTOPPED(st) && WSTOPSIG(st) == SIGSTOP); in ATF_TC_BODY()
268 ATF_REQUIRE(WIFSTOPPED(st) && WSTOPSIG(st) == SIGSTOP); in ATF_TC_BODY()
H A Dt_ptrace_sigchld.c100 ATF_REQUIRE_EQ(WSTOPSIG(info->si_status), expected_status); in sigchld_action()
/netbsd-src/external/gpl3/gdb/dist/readline/readline/examples/rlfe/
H A Dos.h461 #ifndef WSTOPSIG
463 # define WSTOPSIG(status) ((status >> 8) & 0377) macro
465 # define WSTOPSIG(status) status.w_S.w_Stopsig macro
/netbsd-src/external/bsd/libproc/dist/
H A Dproc_util.c67 if (phdl->status == PS_STOP && WSTOPSIG(phdl->wstat) != SIGTRAP) in proc_continue()
68 pending = WSTOPSIG(phdl->wstat); in proc_continue()
/netbsd-src/external/gpl3/gcc/dist/fixincludes/tests/base/sys/
H A Dwait.h13 #define WSTOPSIG(__x) (int)(WIFSTOPPED(__x) ? (int)((((unsigned int)__x) >> 8) & 0xff) : -1) macro
/netbsd-src/external/gpl3/gcc.old/dist/fixincludes/tests/base/sys/
H A Dwait.h13 #define WSTOPSIG(__x) (int)(WIFSTOPPED(__x) ? (int)((((unsigned int)__x) >> 8) & 0xff) : -1) macro
/netbsd-src/sys/sys/
H A Dwait.h63 #define WSTOPSIG(x) ((int)(((unsigned int)_W_INT(x)) >> 8) & 0xff) macro
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_linux_libcdep.cc176 if (WIFSTOPPED(status) && WSTOPSIG(status) != SIGSTOP) { in SuspendThread()
178 (void*)(uptr)WSTOPSIG(status)); in SuspendThread()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_stoptheworld_linux_libcdep.cc190 if (WIFSTOPPED(status) && WSTOPSIG(status) != SIGSTOP) { in SuspendThread()
192 (void*)(uptr)WSTOPSIG(status)); in SuspendThread()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_stoptheworld_linux_libcdep.cpp175 if (WIFSTOPPED(status) && WSTOPSIG(status) != SIGSTOP) { in SuspendThread()
177 (void*)(uptr)WSTOPSIG(status)); in SuspendThread()
/netbsd-src/external/ibm-public/postfix/dist/src/master/
H A Dmaster_spawn.c330 serv->path, pid, WSTOPSIG(status)); in master_reap_child()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dsystem.h417 #ifndef WSTOPSIG
418 #define WSTOPSIG WEXITSTATUS macro
/netbsd-src/external/bsd/atf/dist/tools/
H A Dprocess.cpp371 rv << "stopped(" << WSTOPSIG(mutable_status); in str()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dsystem.h426 #ifndef WSTOPSIG
427 #define WSTOPSIG WEXITSTATUS macro
/netbsd-src/external/gpl2/groff/dist/src/roff/groff/
H A Dpipeline.c55 #define WSTOPSIG(s) (((s) >> 8) & 0377) macro
/netbsd-src/tests/lib/libc/gen/
H A Dt_siginfo.c155 ATF_REQUIRE_EQ(WSTOPSIG(info->si_status), status); in sigchild_action()
/netbsd-src/external/bsd/am-utils/dist/conf/nfs_prot/
H A Dnfs_prot_nextstep.h258 #define WSTOPSIG(status) (int)(WIFSTOPPED(status) ? \ macro
/netbsd-src/usr.bin/make/
H A Dcompat.c382 status = WSTOPSIG(reason); in Compat_RunCommand()

12