OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WIFSIGNALED
(Results
1 - 25
of
185
) sorted by relevancy
1
2
3
4
5
6
7
8
/src/external/gpl2/xcvs/dist/lib/
wait.h
24
#ifndef
WIFSIGNALED
25
#define
WIFSIGNALED
(w) (((w) & 0xff) != 0x7f && ((w) & 0xff) != 0)
/src/external/bsd/openldap/dist/include/ac/
wait.h
39
#ifndef
WIFSIGNALED
40
# define
WIFSIGNALED
(s) (LDAP_LO(s) > 0 && LDAP_HI(s) == 0)
/src/external/gpl3/gdb/dist/gnulib/import/
sys_wait.in.h
51
/* For valid x, exactly one of
WIFSIGNALED
(x), WIFEXITED(x), WIFSTOPPED(x)
53
# ifndef
WIFSIGNALED
54
# define
WIFSIGNALED
(x) (WTERMSIG (x) != 0 && WTERMSIG(x) != 0x7f)
63
/* The termination signal. Only to be accessed if
WIFSIGNALED
(x) is true. */
93
# define
WIFSIGNALED
(x) ((x) == 3)
/src/external/gpl3/gdb.old/dist/gnulib/import/
sys_wait.in.h
51
/* For valid x, exactly one of
WIFSIGNALED
(x), WIFEXITED(x), WIFSTOPPED(x)
53
# ifndef
WIFSIGNALED
54
# define
WIFSIGNALED
(x) (WTERMSIG (x) != 0 && WTERMSIG(x) != 0x7f)
63
/* The termination signal. Only to be accessed if
WIFSIGNALED
(x) is true. */
93
# define
WIFSIGNALED
(x) ((x) == 3)
/src/external/gpl3/gdb.old/dist/gdbsupport/
gdb_wait.h
56
#ifndef
WIFSIGNALED
58
# define
WIFSIGNALED
(w) (((w) & 0xC0000000) == 0xC0000000)
60
# define
WIFSIGNALED
(w) (((w)&0377) != 0177 && ((w)&~0377) == 0)
/src/external/gpl3/gdb/dist/gdbsupport/
gdb_wait.h
56
#ifndef
WIFSIGNALED
58
# define
WIFSIGNALED
(w) (((w) & 0xC0000000) == 0xC0000000)
60
# define
WIFSIGNALED
(w) (((w)&0377) != 0177 && ((w)&~0377) == 0)
/src/tests/kernel/
h_fpufork.c
59
if (
WIFSIGNALED
(status))
/src/external/gpl2/lvm2/dist/test/
not.c
30
if (
WIFSIGNALED
(status))
/src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.multi/
watchpoint-multi-exit.c
55
else if (expect_signaled && !
WIFSIGNALED
(status))
/src/external/gpl3/gdb.old/dist/gdb/nat/
linux-waitpid.c
41
else if (
WIFSIGNALED
(status))
/src/external/gpl3/gdb/dist/gdb/nat/
linux-waitpid.c
41
else if (
WIFSIGNALED
(status))
/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.multi/
watchpoint-multi-exit.c
55
else if (expect_signaled && !
WIFSIGNALED
(status))
/src/lib/libutil/compat/
compat_logoutx.c
67
if (
WIFSIGNALED
(status))
/src/lib/libutil/
logoutx.c
67
if (
WIFSIGNALED
(status))
logwtmpx.c
72
if (
WIFSIGNALED
(status))
/src/tests/lib/libc/gen/
t_assert.c
99
if (
WIFSIGNALED
(sta) != 0 || WIFEXITED(sta) == 0)
137
if (
WIFSIGNALED
(sta) == 0 || WTERMSIG(sta) != SIGABRT)
t_pause.c
103
if (
WIFSIGNALED
(sta) == 0 || WTERMSIG(sta) != SIGKILL)
/src/tests/lib/libc/sys/
t_wait.c
122
ATF_REQUIRE(
WIFSIGNALED
(st) && WTERMSIG(st) == SIGTERM);
158
ATF_REQUIRE(
WIFSIGNALED
(st) && WTERMSIG(st) == SIGSEGV
197
ATF_REQUIRE(!
WIFSIGNALED
(st));
210
ATF_REQUIRE(!
WIFSIGNALED
(st));
223
ATF_REQUIRE(
WIFSIGNALED
(st) && WTERMSIG(st) == SIGQUIT);
267
ATF_REQUIRE(!
WIFSIGNALED
(st));
278
ATF_REQUIRE(!
WIFSIGNALED
(st));
289
ATF_REQUIRE(
WIFSIGNALED
(st) && WTERMSIG(st) == SIGQUIT);
t_fork.c
187
ATF_REQUIRE(!
WIFSIGNALED
(status));
209
ATF_REQUIRE(
WIFSIGNALED
(status));
222
ATF_REQUIRE(!
WIFSIGNALED
(status));
234
ATF_REQUIRE(
WIFSIGNALED
(status));
316
ASSERT_EQ(!!
WIFSIGNALED
(status), false);
327
ATF_REQUIRE_EQ(!!
WIFSIGNALED
(status), false);
/src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/sys/
wait.d
119
WIFSIGNALED
142
extern (D) bool
WIFSIGNALED
( int status )
158
extern (D) bool
WIFSIGNALED
( int status )
174
extern (D) bool
WIFSIGNALED
( int status )
190
extern (D) bool
WIFSIGNALED
( int status )
206
extern (D) bool
WIFSIGNALED
(int status)
222
extern (D) bool
WIFSIGNALED
( int status )
237
extern (D) bool
WIFSIGNALED
(int status) { return (status & 0xff) > 0 && (status & 0xff00) == 0; }
247
extern (D) bool
WIFSIGNALED
( int status ) { return WTERMSIG(status + 1) >= 2; }
258
extern (D) bool
WIFSIGNALED
( int status ) { return (status&0xffff)-1U < 0xffU;
[
all
...]
/src/external/bsd/kyua-testers/dist/
atf_result.c
348
assert(
WIFSIGNALED
(status));
410
assert(
WIFSIGNALED
(status));
445
assert(
WIFSIGNALED
(status));
469
if (
WIFSIGNALED
(status)) {
507
assert(
WIFSIGNALED
(status));
542
assert(
WIFSIGNALED
(status));
575
assert(
WIFSIGNALED
(status));
611
assert(
WIFSIGNALED
(status));
plain_main.c
83
assert(
WIFSIGNALED
(status));
165
if (
WIFSIGNALED
(status) && WCOREDUMP(status)) {
/src/tests/rump/rumpkern/
t_signals.c
112
ATF_REQUIRE(
WIFSIGNALED
(status) && WTERMSIG(status) == SIGABRT);
/src/external/bsd/kyua-cli/dist/utils/process/
status.cpp
56
_signaled(
WIFSIGNALED
(stat_loc) ?
/src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
wait-process.c
41
#define
WIFSIGNALED
(x) (WTERMSIG (x) != 0) /* or: ((x) == 3) ?? */
74
/* For valid x, exactly one of
WIFSIGNALED
(x), WIFEXITED(x), WIFSTOPPED(x)
76
#ifndef
WIFSIGNALED
77
# define
WIFSIGNALED
(x) (WTERMSIG (x) != 0 && WTERMSIG(x) != 0x7f)
86
WTERMSIG(x) only if
WIFSIGNALED
(x) is true, and
371
/* One of
WIFSIGNALED
(status), WIFEXITED (status), WIFSTOPPED (status)
385
if (
WIFSIGNALED
(status))
Completed in 125 milliseconds
1
2
3
4
5
6
7
8
Indexes created Tue Aug 11 00:25:38 UTC 2026