Searched refs:WIFSTOPPED (Results 1 - 25 of 75) sorted by relevance

123

/netbsd-current/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)
/netbsd-current/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)
/netbsd-current/external/gpl2/xcvs/dist/lib/
H A Dwait.h21 #ifndef WIFSTOPPED
22 #define WIFSTOPPED(w) (((w) & 0xff) == 0x7f) macro
/netbsd-current/external/bsd/openldap/dist/include/ac/
H A Dwait.h45 #ifndef WIFSTOPPED
46 # define WIFSTOPPED(s) (LDAP_LO(s) == 0177 && LDAP_HI(s) != 0) macro
/netbsd-current/external/gpl3/gdb/dist/gnulib/import/
H A Dsys_wait.in.h51 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x)
59 # ifndef WIFSTOPPED
60 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f) macro
73 /* The stopping signal. Only to be accessed if WIFSTOPPED(x) is true. */
95 # define WIFSTOPPED(x) 0
/netbsd-current/external/gpl3/gdb.old/dist/gdbsupport/
H A Dgdb_wait.h64 #ifndef WIFSTOPPED
72 #define WIFSTOPPED(w) ((w)&0x40) macro
75 #define WIFSTOPPED(w) (((w)&0377) == 0177) macro
/netbsd-current/external/gpl3/gdb.old/dist/gnulib/import/
H A Dsys_wait.in.h51 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x)
59 # ifndef WIFSTOPPED
60 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f) macro
73 /* The stopping signal. Only to be accessed if WIFSTOPPED(x) is true. */
95 # define WIFSTOPPED(x) 0
/netbsd-current/external/gpl3/gdb/dist/gdbsupport/
H A Dgdb_wait.h64 #ifndef WIFSTOPPED
72 #define WIFSTOPPED(w) ((w)&0x40) macro
75 #define WIFSTOPPED(w) (((w)&0377) == 0177) macro
/netbsd-current/external/gpl3/gdb/dist/gdb/nat/
H A Dlinux-waitpid.c31 if (WIFSTOPPED (status))
H A Dlinux-ptrace.c199 if (!WIFSTOPPED (status))
201 warning (_("linux_ptrace_test_ret_to_nx: status %d is not WIFSTOPPED!"),
347 if (! WIFSTOPPED (status))
440 return (WIFSTOPPED (wstat)
/netbsd-current/external/gpl3/gdb.old/dist/gdb/nat/
H A Dlinux-waitpid.c32 if (WIFSTOPPED (status))
H A Dlinux-ptrace.c201 if (!WIFSTOPPED (status))
203 warning (_("linux_ptrace_test_ret_to_nx: status %d is not WIFSTOPPED!"),
349 if (! WIFSTOPPED (status))
442 return (WIFSTOPPED (wstat)
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/sys/
H A Dwait.d120 WIFSTOPPED
146 extern (D) bool WIFSTOPPED( int status ) { return ( status & 0xFF ) == 0x7F; }
162 extern (D) bool WIFSTOPPED( int status ) { return _WSTATUS( status ) == _WSTOPPED; }
178 extern (D) bool WIFSTOPPED( int status ) { return _WSTATUS( status ) == _WSTOPPED; }
194 extern (D) bool WIFSTOPPED( int status ) { return _WSTATUS( status ) == _WSTOPPED; }
210 extern (D) bool WIFSTOPPED(int status) { return (status & 0xFF) == _WSTOPPED; }
226 extern (D) bool WIFSTOPPED( int status ) { return _WSTATUS( status ) == _WSTOPPED; }
238 extern (D) bool WIFSTOPPED(int status) { return (status & 0xff) == 0x7f && (status & 0xff00) != 0; }
248 extern (D) bool WIFSTOPPED( int status ) { return WTERMSIG(status) == 0x7F; }
259 extern (D) bool WIFSTOPPED( in
[all...]
/netbsd-current/tests/lib/libc/sys/
H A Dt_wait.c198 ATF_REQUIRE(WIFSTOPPED(st) && WSTOPSIG(st) == SIGSTOP);
212 ATF_REQUIRE(!WIFSTOPPED(st));
224 ATF_REQUIRE(!WIFSTOPPED(st));
268 ATF_REQUIRE(WIFSTOPPED(st) && WSTOPSIG(st) == SIGSTOP);
280 ATF_REQUIRE(!WIFSTOPPED(st));
290 ATF_REQUIRE(!WIFSTOPPED(st));
H A Dt_fork.c188 ATF_REQUIRE(!WIFSTOPPED(status));
210 ATF_REQUIRE(!WIFSTOPPED(status));
223 ATF_REQUIRE(!WIFSTOPPED(status));
235 ATF_REQUIRE(!WIFSTOPPED(status));
317 ASSERT_EQ(!!WIFSTOPPED(status), false);
328 ATF_REQUIRE_EQ(!!WIFSTOPPED(status), false);
H A Dt_ptrace_wait.h245 ATF_REQUIRE_MSG(!WIFSTOPPED(status), "Reported stopped process");
258 FORKEE_ASSERTX(!WIFSTOPPED(status));
269 ATF_REQUIRE_MSG(!WIFSTOPPED(status), "Reported stopped process");
278 FORKEE_ASSERTX(!WIFSTOPPED(status));
287 ATF_REQUIRE_MSG(!WIFSTOPPED(status), "Reported stopped process");
302 FORKEE_ASSERTX(!WIFSTOPPED(status));
314 ATF_REQUIRE_MSG(WIFSTOPPED(status), "Reported !stopped process");
330 FORKEE_ASSERTX(WIFSTOPPED(status));
/netbsd-current/sys/sys/
H A Dwait.h61 #define WIFSTOPPED(x) (_WSTATUS(x) == _WSTOPPED && !WIFCONTINUED(x)) macro
64 #define WIFSIGNALED(x) (!WIFSTOPPED(x) && !WIFCONTINUED(x) && !WIFEXITED(x))
/netbsd-current/games/sail/
H A Dpl_1.c137 if (pid < 0 || (pid > 0 && !WIFSTOPPED(status)))
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dwait-process.c43 #define WIFSTOPPED(x) 0 macro
74 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x)
82 #ifndef WIFSTOPPED
83 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f) macro
371 /* One of WIFSIGNALED (status), WIFEXITED (status), WIFSTOPPED (status)
373 if (!WIFSTOPPED (status))
/netbsd-current/external/bsd/libproc/dist/
H A Dproc_bkpt.c65 } else if (!WIFSTOPPED(status)) {
229 if (!WIFSTOPPED(status)) {
H A Dproc_create.c130 if (WIFSTOPPED(status) == 0)
191 if (WIFSTOPPED(status) == 0) {
/netbsd-current/tests/kernel/
H A Dt_zombie.c166 ATF_REQUIRE(!WIFSTOPPED(status));
192 ATF_REQUIRE(!WIFSTOPPED(status));
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
H A Daarch64-dbreg-contents.c109 assert (WIFSTOPPED (status));
124 assert (WIFSTOPPED (status));
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/
H A Daarch64-dbreg-contents.c109 assert (WIFSTOPPED (status));
124 assert (WIFSTOPPED (status));
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dlinux-nat.c483 detach_child = WIFSTOPPED (status);
953 if (!WIFSTOPPED (status))
1098 if (!WIFSTOPPED (status))
1293 gdb_assert (lp->status == 0 || WIFSTOPPED (lp->status));
1300 if (WIFSTOPPED (lp->status) && linux_is_extended_waitstatus (lp->status))
1634 if (lp->status && WIFSTOPPED (lp->status))
1854 else if (!WIFSTOPPED (status))
2124 gdb_assert (WIFSTOPPED (status));
2137 if (WIFSTOPPED (status) && WSTOPSIG (status) == SYSCALL_SIGTRAP)
2155 if (WIFSTOPPED (statu
[all...]

Completed in 399 milliseconds

123