Home | History | Annotate | Download | only in gnulib-lib

Lines Matching refs:WTERMSIG

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)
80 # define WIFEXITED(x) (WTERMSIG (x) == 0)
83 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f)
86 WTERMSIG(x) only if WIFSIGNALED(x) is true, and
388 if (WTERMSIG (status) == SIGPIPE && ignore_sigpipe)
394 progname, (int) WTERMSIG (status));