Interface PosixShim.WaitMacros

All Known Implementing Classes:
PosixShim.BSDWaitMacros, PosixShim.LinuxWaitMacros
Enclosing class:
PosixShim

public static interface PosixShim.WaitMacros
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    WCOREDUMP(long status)
     
    int
    WEXITSTATUS(long status)
     
    boolean
    WIFEXITED(long status)
     
    boolean
    WIFSIGNALED(long status)
     
    boolean
    WIFSTOPPED(long status)
     
    int
    WSTOPSIG(long status)
     
    int
    WTERMSIG(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)