jnr.constants.platform.linux.WaitFlags Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnr-unixsocket-nodep Show documentation
Show all versions of jnr-unixsocket-nodep Show documentation
com.github.jnr:jnr-unixsocket with orh.objectweb.asm shaded
// WARNING: This file is autogenerated. DO NOT EDIT!
// Generated Tue Feb 24 09:44:02 +1000 2009
package jnr.constants.platform.linux;
public enum WaitFlags implements jnr.constants.Constant {
WNOHANG(0x1),
WUNTRACED(0x2),
WSTOPPED(0x2),
WEXITED(0x4),
WCONTINUED(0x8),
WNOWAIT(0x1000000);
private final int value;
private WaitFlags(int value) { this.value = value; }
public static final long MIN_VALUE = 0x1;
public static final long MAX_VALUE = 0x1000000;
public final int value() { return value; }
public final int intValue() { return value; }
public final long longValue() { return value; }
}