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

1 2 3

  /src/external/bsd/libbind/dist/port/cygwin/include/sys/
wait.h 7 #if !defined (WCOREDUMP)
8 # define WCOREDUMP(x) (((x) & 0x80) == 0x80)
  /src/external/bsd/libbind/dist/port/sunos/include/sys/
wait.h 7 #define WCOREDUMP(x) (((union __wait*)&(x))->__w_coredump)
  /src/external/gpl2/xcvs/dist/lib/
wait.h 30 #ifndef WCOREDUMP /* not POSIX, but common and useful */
31 #define WCOREDUMP(w) (((w) & 0x80) != 0)
  /src/external/bsd/kyua-cli/dist/utils/process/
status.cpp 43 #if !defined(WCOREDUMP)
44 # define WCOREDUMP(x) false
58 std::make_pair(WTERMSIG(stat_loc), WCOREDUMP(stat_loc))) :
status_test.cpp 163 #if !defined(WCOREDUMP)
  /src/external/gpl3/gdb/dist/gnulib/import/
sys_wait.in.h 79 # ifndef WCOREDUMP
80 # define WCOREDUMP(x) ((x) & 0x80)
106 # define WCOREDUMP(x) 0
  /src/external/gpl3/gdb.old/dist/gnulib/import/
sys_wait.in.h 79 # ifndef WCOREDUMP
80 # define WCOREDUMP(x) ((x) & 0x80)
106 # define WCOREDUMP(x) 0
  /src/external/bsd/cron/dist/
externs.h 122 #ifndef WCOREDUMP
123 # define WCOREDUMP(st) (((st) & 0200) != 0)
  /src/external/bsd/nvi/usr.bin/nvi/
compat.h 165 #ifndef WCOREDUMP
166 #define WCOREDUMP(a) 0
port.h 167 #ifndef WCOREDUMP
168 #define WCOREDUMP(a) 0
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
wait-process.c 39 #define WCOREDUMP(x) 0
56 # ifndef WCOREDUMP
57 # define WCOREDUMP(x) ((x).w_coredump)
67 # ifndef WCOREDUMP
68 # define WCOREDUMP(x) ((x) & 0x80)
  /src/external/bsd/kyua-testers/dist/
atf_result.c 353 WCOREDUMP(status) ? " (core dumped)" : "");
415 WCOREDUMP(status) ? " (core dumped)" : "");
450 WCOREDUMP(status) ? " (core dumped)" : "");
512 WCOREDUMP(status) ? " (core dumped)" : "");
547 WCOREDUMP(status) ? " (core dumped)" : "");
580 WCOREDUMP(status) ? " (core dumped)" : "");
615 WCOREDUMP(status) ? " (core dumped)" : "");
760 WCOREDUMP(wait_status) ? " (core dumped)" : "");
plain_main.c 165 if (WIFSIGNALED(status) && WCOREDUMP(status)) {
atf_main.c 318 if (WIFSIGNALED(status) && WCOREDUMP(status)) {
414 if (WIFSIGNALED(status) && WCOREDUMP(status)) {
  /src/external/bsd/nvi/dist/dist/
port.h.in 165 #ifndef WCOREDUMP
166 #define WCOREDUMP(a) 0
  /src/distrib/utils/ssh/
ssh.c 46 #ifndef WCOREDUMP
47 #define WCOREDUMP(x) ((x) & 0200)
584 if (WCOREDUMP(cstat))
  /src/sys/sys/
wait.h 70 #define WCOREDUMP(x) (_W_INT(x) & WCOREFLAG)
  /src/external/gpl2/groff/dist/src/roff/groff/
pipeline.c 72 #ifndef WCOREDUMP
74 #define WCOREDUMP(s) ((s) & WCOREFLAG)
76 #define WCOREDUMP(s) (0)
78 #endif /* not WCOREDUMP */
542 WCOREDUMP(status) ? " (core dumped)" : "");
  /src/lib/libpam/modules/pam_exec/
pam_exec.c 144 WCOREDUMP(status) ? " (core dumped)" : "");
  /src/external/gpl3/gcc/dist/gcc/
collect-utils.cc 123 WCOREDUMP (status) ? ", core dumped" : "");
  /src/external/gpl3/gcc.old/dist/gcc/
collect-utils.cc 123 WCOREDUMP (status) ? ", core dumped" : "");
gcc-ar.cc 245 WCOREDUMP (status) ? ", core dumped" : "");
  /src/tests/lib/libc/sys/
t_fork.c 212 ATF_REQUIRE_EQ(!!WCOREDUMP(status), expect_core);
237 ATF_REQUIRE_EQ(!!WCOREDUMP(status), 0);
  /src/external/bsd/atf/dist/tools/
process.cpp 374 if (WCOREDUMP(mutable_status))
421 return WCOREDUMP(mutable_status);
  /src/external/gpl3/gdb/dist/readline/readline/examples/rlfe/
os.h 469 /* NET-2 uses WCOREDUMP */
470 #if defined(WCOREDUMP) && !defined(WIFCORESIG)
471 # define WIFCORESIG(status) WCOREDUMP(status)

Completed in 68 milliseconds

1 2 3