com.kenai.constantine.platform.fake.RLIMIT Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnr-constants Show documentation
Show all versions of jnr-constants Show documentation
A set of platform constants (e.g. errno values)
// WARNING: This file is autogenerated. DO NOT EDIT!
// Generated Sat May 02 18:23:34 +1000 2009
package com.kenai.constantine.platform.fake;
public enum RLIMIT implements com.kenai.constantine.Constant {
RLIMIT_AS(1),
RLIMIT_CORE(2),
RLIMIT_CPU(3),
RLIMIT_DATA(4),
RLIMIT_FSIZE(5),
RLIMIT_LOCKS(6),
RLIMIT_MEMLOCK(7),
RLIMIT_MSGQUEUE(8),
RLIMIT_NICE(9),
RLIMIT_NLIMITS(10),
RLIMIT_NOFILE(11),
RLIMIT_NPROC(12),
RLIMIT_OFILE(13),
RLIMIT_RSS(14),
RLIMIT_RTPRIO(15),
RLIMIT_RTTIME(16),
RLIMIT_SIGPENDING(17),
RLIMIT_STACK(18);
private final int value;
private RLIMIT(int value) { this.value = value; }
public static final long MIN_VALUE = 1;
public static final long MAX_VALUE = 18;
public final int value() { return value; }
}