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

/openjdk10/jdk/src/java.base/unix/native/libjava/
H A DProcessHandleImpl_unix.c129 #ifndef WTERMSIG
130 #define WTERMSIG(status) ((status)&0x7F) macro
141 #define WTERMSIG_RETURN(status) WTERMSIG(status)
143 #define WTERMSIG_RETURN(status) (WTERMSIG(status) + 0x80)
H A DProcessImpl_md.c225 #ifndef WTERMSIG
226 #define WTERMSIG(status) ((status)&0x7F) macro
/openjdk10/test/fmw/gtest/src/
H A Dgtest-death-test.cc172 return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_;
194 m << "Terminated by signal " << WTERMSIG(exit_code);
/openjdk10/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp3996 return 0x80 + WTERMSIG(status);
/openjdk10/hotspot/src/os/aix/vm/
H A Dos_aix.cpp4287 return 0x80 + WTERMSIG(status);
/openjdk10/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp5378 return 0x80 + WTERMSIG(status);
/openjdk10/hotspot/src/os/linux/vm/
H A Dos_linux.cpp5540 return 0x80 + WTERMSIG(status);

Completed in 183 milliseconds