< prev index next >

src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystem.java

Print this page
@  rev 57734 : Review feedback
|
o  rev 57733 : 8231111: Cgroups v2: Rework Metrics in java.base so as to recognize unified hierarchy
|  Reviewed-by: bobv, mchung
~
o  rev 56862 : 8231111: Cgroups v2: Rework Metrics in java.base so as to recognize unified hierarchy
|  Reviewed-by: bobv
~

*** 28,33 **** --- 28,40 ---- /** * Marker interface for cgroup-based metrics * */ public interface CgroupSubsystem extends Metrics { + + /** + * Returned for metrics of type long if the underlying implementation + * has determined that no limit is being imposed. + */ + public static final long LONG_RETVAL_UNLIMITED = -1; + }
< prev index next >