| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/sys/ |
| H A D | wait.d | 147 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 D | sys_wait.in.h | 74 # 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 D | aarch64-dbreg-contents.c | 110 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 D | wait.h | 34 #ifndef WSTOPSIG 35 #define WSTOPSIG(w) (((w) >> 8) & 0xff) macro
|
| /netbsd-src/external/bsd/openldap/dist/include/ac/ |
| H A D | wait.h | 48 #ifndef WSTOPSIG 49 # define WSTOPSIG(s) LDAP_HI(s) macro
|
| /netbsd-src/tests/lib/libc/sys/ |
| H A D | t_ptrace_threads_wait.h | 888 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 D | t_ptrace_wait.h | 317 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 D | t_wait.c | 198 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 D | t_ptrace_sigchld.c | 100 ATF_REQUIRE_EQ(WSTOPSIG(info->si_status), expected_status); in sigchld_action()
|
| /netbsd-src/external/gpl3/gdb/dist/readline/readline/examples/rlfe/ |
| H A D | os.h | 461 #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 D | proc_util.c | 67 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 D | wait.h | 13 #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 D | wait.h | 13 #define WSTOPSIG(__x) (int)(WIFSTOPPED(__x) ? (int)((((unsigned int)__x) >> 8) & 0xff) : -1) macro
|
| /netbsd-src/sys/sys/ |
| H A D | wait.h | 63 #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 D | sanitizer_stoptheworld_linux_libcdep.cc | 176 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 D | sanitizer_stoptheworld_linux_libcdep.cc | 190 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 D | sanitizer_stoptheworld_linux_libcdep.cpp | 175 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 D | master_spawn.c | 330 serv->path, pid, WSTOPSIG(status)); in master_reap_child()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | system.h | 417 #ifndef WSTOPSIG 418 #define WSTOPSIG WEXITSTATUS macro
|
| /netbsd-src/external/bsd/atf/dist/tools/ |
| H A D | process.cpp | 371 rv << "stopped(" << WSTOPSIG(mutable_status); in str()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | system.h | 426 #ifndef WSTOPSIG 427 #define WSTOPSIG WEXITSTATUS macro
|
| /netbsd-src/external/gpl2/groff/dist/src/roff/groff/ |
| H A D | pipeline.c | 55 #define WSTOPSIG(s) (((s) >> 8) & 0377) macro
|
| /netbsd-src/tests/lib/libc/gen/ |
| H A D | t_siginfo.c | 155 ATF_REQUIRE_EQ(WSTOPSIG(info->si_status), status); in sigchild_action()
|
| /netbsd-src/external/bsd/am-utils/dist/conf/nfs_prot/ |
| H A D | nfs_prot_nextstep.h | 258 #define WSTOPSIG(status) (int)(WIFSTOPPED(status) ? \ macro
|
| /netbsd-src/usr.bin/make/ |
| H A D | compat.c | 382 status = WSTOPSIG(reason); in Compat_RunCommand()
|