Searched refs:WTERMSIG (Results 1 - 25 of 136) sorted by relevance

123456

/macosx-10.10/bash-94.1.2/bash-3.2/include/
H A Dposixwait.h59 # if !defined (WTERMSIG)
60 # define WTERMSIG(s) ((s) & 0177) macro
61 # endif /* !WTERMSIG */
89 # if !defined (WTERMSIG)
90 # define WTERMSIG(s) ((s).w_termsig) macro
91 # endif /* !WTERMSIG */
H A Dunionwait.h93 #define WTERMSIG(x) ((x).w_termsig) macro
/macosx-10.10/emacs-93/emacs/src/
H A Dsyswait.h49 #define WIFEXITED(status) (WTERMSIG(status) == 0)
60 #ifndef WTERMSIG
61 #define WTERMSIG(status) ((status) & 0x7f) macro
89 #define WTERMSIG(w) (w & 0177) macro
110 #undef WTERMSIG macro
117 #ifndef WTERMSIG
118 #define WTERMSIG(w) w.w_termsig macro
124 #define WIFSTOPPED(w) (WTERMSIG (w) == 0177)
127 #define WIFSIGNALED(w) (WTERMSIG (w) != 0177 && (WSTOPSIG (w)) == 0)
130 #define WIFEXITED(w) (WTERMSIG (
147 #define WTERMSIG macro
[all...]
/macosx-10.10/cron-39/cron/
H A Dexterns.h86 # ifndef WTERMSIG
87 # define WTERMSIG(x) ((x) & 0x7f) macro
96 # ifndef WTERMSIG
97 # define WTERMSIG(x) ((x).w_termsig) macro
105 #define WIFSIGNALED(x) (WTERMSIG(x) != 0)
108 #define WIFEXITED(x) (WTERMSIG(x) == 0)
/macosx-10.10/uucp-11/uucp/unix/
H A Diswait.c49 #ifndef WTERMSIG
50 #define WTERMSIG(u) ((u).w_termsig) macro
60 #ifndef WTERMSIG
61 #define WTERMSIG(i) ((i) & 0x7f) macro
140 WIFEXITED (istat) ? WEXITSTATUS (istat) : WTERMSIG (istat));
148 ulog (LOG_ERROR, "%s: Got signal %d", zreport, WTERMSIG (istat));
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dexecve.c62 signal(WTERMSIG(status), SIG_DFL);
63 kill(getpid(), WTERMSIG(status));
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/include/ac/
H A Dwait.h40 #ifndef WTERMSIG
41 # define WTERMSIG(s) (LDAP_LO(s) & 0177) macro
/macosx-10.10/ksh-23/ksh/src/lib/libast/include/
H A Dwait.h61 #undef WTERMSIG macro
79 #ifndef WTERMSIG
80 #define WTERMSIG(x) ((x)&((1<<(EXIT_BITS-1))-1)) macro
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-waitpid.h43 #define WTERMSIG(w) (int)(WIFSIGNALED(w) ? (_W_INT(w) & 0177) : -1) macro
/macosx-10.10/tcsh-65/tcsh/
H A Dmi.wait.h31 #define WTERMSIG(s) (__LOW(s) & 0177) /* sig value */ macro
/macosx-10.10/Security-57031.1.35/Security/sec/SecurityTool/
H A Dleaks.c100 fprintf(stderr, "leaks terminated by signal: %d", WTERMSIG(status));
/macosx-10.10/Security-57031.1.35/SecurityTool/
H A Dleaks.c101 sec_error("leaks terminated by signal: %d", WTERMSIG(status));
/macosx-10.10/emacs-93/
H A Drunit.c41 errx(1, "child exited on signal %d", WTERMSIG(status));
/macosx-10.10/ksh-23/ksh/src/lib/libast/misc/
H A Dprocclose.c90 EXIT_TERM(WTERMSIG(status)) :
/macosx-10.10/tcsh-65/tcsh/win32/
H A Dsignal.h117 #define WTERMSIG(a) (((unsigned long)(a))==0xC000013AL?SIGINT:SIGSEGV) macro
/macosx-10.10/xnu-2782.1.97/tools/tests/execperf/
H A Drun.c77 errx(1, "process exited with signal %d", WTERMSIG(ret));
/macosx-10.10/Security-57031.1.35/SecurityTests/regressions/test/
H A Dtestleaks.c178 is(WTERMSIG(status), 0, "leaks terminated by");
/macosx-10.10/dtrace-147/test/cmd/badioctl/
H A Dbadioctl.c139 WTERMSIG(status));
/macosx-10.10/kext_tools-384.1.4/
H A Dfork_program.c103 result = WTERMSIG(child_status);
/macosx-10.10/procmail-14/procmail/src/
H A Dcommon.c67 return lexitcode=WIFEXITED(i)?WEXITSTATUS(i):-WTERMSIG(i);
H A Dincludes.h62 /* WEXITSTATUS() WTERMSIG() WNOHANG */
267 #ifdef WTERMSIG
268 #undef WTERMSIG macro
281 #ifndef WTERMSIG
282 #define WTERMSIG(waitval) ((waitval)&255) macro
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dnojobs.c217 return (128 + WTERMSIG (status));
246 return (WTERMSIG (status));
776 if (WIFSIGNALED (status) && (WTERMSIG (status) == SIGINT))
796 (WTERMSIG (status) != SIGINT))
799 (WTERMSIG (status) != SIGINT) && (WTERMSIG (status) != SIGPIPE))
802 fprintf (stderr, "%s", j_strsignal (WTERMSIG (status)));
/macosx-10.10/screen-22/screen/
H A Dos.h454 #ifndef WTERMSIG
456 # define WTERMSIG(status) (status & 0177) macro
458 # define WTERMSIG(status) status.w_T.w_Termsig macro
/macosx-10.10/uucp-11/uucp/contrib/
H A DdialHDB.c143 WTERMSIG(stat));
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dwait.h154 #define WTERMSIG(x) (_WSTATUS(x)) macro

Completed in 385 milliseconds

123456