Package org.jruby.util.io
Interface PosixShim.WaitMacros
- All Known Implementing Classes:
PosixShim.BSDWaitMacros,PosixShim.LinuxWaitMacros
- Enclosing class:
PosixShim
public static interface PosixShim.WaitMacros
-
Method Summary
Modifier and TypeMethodDescriptionbooleanWCOREDUMP(long status) intWEXITSTATUS(long status) booleanWIFEXITED(long status) booleanWIFSIGNALED(long status) booleanWIFSTOPPED(long status) intWSTOPSIG(long status) intWTERMSIG(long status)
-
Method Details
-
WIFEXITED
boolean WIFEXITED(long status) -
WIFSIGNALED
boolean WIFSIGNALED(long status) -
WTERMSIG
int WTERMSIG(long status) -
WEXITSTATUS
int WEXITSTATUS(long status) -
WSTOPSIG
int WSTOPSIG(long status) -
WIFSTOPPED
boolean WIFSTOPPED(long status) -
WCOREDUMP
boolean WCOREDUMP(long status)
-