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

1 2 3 4 5 6 7 8

  /src/external/gpl3/gdb/dist/gnulib/import/
sys_wait.in.h 48 WTERMSIG are bits 7..0, while BeOS uses the opposite. Therefore programs
54 # define WIFSIGNALED(x) (WTERMSIG (x) != 0 && WTERMSIG(x) != 0x7f)
57 # define WIFEXITED(x) (WTERMSIG (x) == 0)
60 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f)
64 # ifndef WTERMSIG
65 # define WTERMSIG(x) ((x) & 0x7f)
98 # define WTERMSIG(x) SIGTERM
  /src/external/gpl3/gdb.old/dist/gnulib/import/
sys_wait.in.h 48 WTERMSIG are bits 7..0, while BeOS uses the opposite. Therefore programs
54 # define WIFSIGNALED(x) (WTERMSIG (x) != 0 && WTERMSIG(x) != 0x7f)
57 # define WIFEXITED(x) (WTERMSIG (x) == 0)
60 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f)
64 # ifndef WTERMSIG
65 # define WTERMSIG(x) ((x) & 0x7f)
98 # define WTERMSIG(x) SIGTERM
  /src/external/gpl2/xcvs/dist/lib/
wait.h 37 #ifndef WTERMSIG
38 #define WTERMSIG(w) ((w) & 0x7f)
  /src/external/gpl3/gdb.old/dist/gdb/nat/
linux-waitpid.c 43 strsigno (WTERMSIG (status)),
44 strsignal (WTERMSIG (status)));
  /src/external/gpl3/gdb/dist/gdb/nat/
linux-waitpid.c 43 strsigno (WTERMSIG (status)),
44 strsignal (WTERMSIG (status)));
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
wait-process.c 38 #define WTERMSIG(x) ((x) & 0xff) /* or: SIGABRT ?? */
41 #define WIFSIGNALED(x) (WTERMSIG (x) != 0) /* or: ((x) == 3) ?? */
42 #define WIFEXITED(x) (WTERMSIG (x) == 0) /* or: ((x) != 3) ?? */
49 /* On Linux, WEXITSTATUS are bits 15..8 and WTERMSIG are bits 7..0, while
53 # ifndef WTERMSIG
54 # define WTERMSIG(x) ((x).w_termsig)
64 # ifndef WTERMSIG
65 # define WTERMSIG(x) ((x) & 0x7f)
77 # define WIFSIGNALED(x) (WTERMSIG (x) != 0 && WTERMSIG(x) != 0x7f
    [all...]
  /src/external/bsd/openldap/dist/include/ac/
wait.h 42 #ifndef WTERMSIG
43 # define WTERMSIG(s) (LDAP_LO(s) & 0177)
  /src/external/gpl3/gdb.old/dist/gdbsupport/
gdb_wait.h 87 #ifndef WTERMSIG
90 # define WTERMSIG(w) windows_status_to_termsig (w)
92 # define WTERMSIG(w) ((w) & 0177)
  /src/external/gpl3/gdb/dist/gdbsupport/
gdb_wait.h 87 #ifndef WTERMSIG
90 # define WTERMSIG(w) windows_status_to_termsig (w)
92 # define WTERMSIG(w) ((w) & 0177)
  /src/tests/lib/libc/gen/execve/
t_execve.c 98 ATF_REQUIRE_EQ_MSG(WTERMSIG(status), SIGTERM,
100 WTERMSIG(status), strsignal(WTERMSIG(status)));
  /src/tests/kernel/
h_fpufork.c 60 errx(1, "child exited on signal %d", WTERMSIG(status));
  /src/external/gpl2/lvm2/dist/test/
not.c 33 pid, WTERMSIG(status));
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/sys/
wait.d 122 WTERMSIG
148 extern (D) int WTERMSIG( int status ) { return status & 0x7F; }
164 extern (D) int WTERMSIG( int status ) { return _WSTATUS( status ); }
180 extern (D) int WTERMSIG( int status ) { return _WSTATUS( status ); }
196 extern (D) int WTERMSIG( int status ) { return _WSTATUS( status ); }
212 extern (D) int WTERMSIG(int status) { return _WSTATUS(status); }
228 extern (D) int WTERMSIG( int status ) { return _WSTATUS( status ); }
240 extern (D) int WTERMSIG(int status) { return (status & 0x7f); }
246 extern (D) bool WIFEXITED( int status ) { return WTERMSIG(status) == 0; }
247 extern (D) bool WIFSIGNALED( int status ) { return WTERMSIG(status + 1) >= 2;
    [all...]
  /src/lib/libutil/compat/
compat_logoutx.c 68 utp->ut_exit.e_termination = (uint16_t)WTERMSIG(status);
  /src/lib/libutil/
logoutx.c 68 utp->ut_exit.e_termination = (uint16_t)WTERMSIG(status);
ttyaction.c 152 if (WTERMSIG(status)) {
154 actfile, linenum, WTERMSIG(status));
logwtmpx.c 73 ut.ut_exit.e_termination = (uint16_t)WTERMSIG(status);
  /src/external/bsd/kyua-testers/dist/
atf_result.c 352 reason, WTERMSIG(status),
414 "but received signal %d%s", WTERMSIG(status),
449 "received signal %d%s", WTERMSIG(status),
470 if (status_arg == NO_STATUS_ARG || status_arg == WTERMSIG(status)) {
478 "signal %d but got %d", status_arg, WTERMSIG(status));
511 "received signal %d%s", WTERMSIG(status),
546 "but received signal %d%s", WTERMSIG(status),
579 "but received signal %d%s", WTERMSIG(status),
614 "but received signal %d%s", WTERMSIG(status),
759 "signal %d%s", WTERMSIG(wait_status)
    [all...]
  /src/tests/lib/libc/gen/
t_pause.c 103 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
  /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 58 std::make_pair(WTERMSIG(stat_loc), WCOREDUMP(stat_loc))) :
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
clone-new-thread-event.c 86 assert (WIFSIGNALED (status) && WTERMSIG (status) == SIGUSR1);
process-dies-while-detaching.c 96 printf ("signaled, sig=%d\n", WTERMSIG (status));
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
clone-new-thread-event.c 86 assert (WIFSIGNALED (status) && WTERMSIG (status) == SIGUSR1);
process-dies-while-detaching.c 96 printf ("signaled, sig=%d\n", WTERMSIG (status));

Completed in 60 milliseconds

1 2 3 4 5 6 7 8