< prev index next >

src/java.base/linux/classes/jdk/internal/platform/cgroupv2/CgroupV2SubsystemController.java

Print this page
@  rev 57446 : Review changes
|
o  rev 57445 : 8231111: Cgroups v2: Rework Metrics in java.base so as to recognize unified hierarchy
|  Reviewed-by: bobv
~
o  rev 56863 : 8231111: Cgroups v2: Rework Metrics in java.base so as to recognize unified hierarchy
|  Reviewed-by: bobv
~


  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.internal.platform.cgroupv2;
  27 
  28 import java.nio.file.Paths;
  29 
  30 import jdk.internal.platform.CgroupSubsystemController;

  31 
  32 public class CgroupV2SubsystemController implements CgroupSubsystemController {
  33 
  34     private final String path;
  35 
  36     public CgroupV2SubsystemController(String mountPath, String cgroupPath) {
  37         this.path = Paths.get(mountPath, cgroupPath).toString();
  38     }
  39 
  40     @Override
  41     public String path() {
  42         return path;
  43     }
  44 
  45     public static long convertStringToLong(String strval) {
  46         return CgroupSubsystemController.convertStringToLong(strval, CgroupSubsystemController.RETVAL_UNLIMITED);
  47     }
  48 }


  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.internal.platform.cgroupv2;
  27 
  28 import java.nio.file.Paths;
  29 
  30 import jdk.internal.platform.CgroupSubsystemController;
  31 import jdk.internal.platform.Metrics;
  32 
  33 public class CgroupV2SubsystemController implements CgroupSubsystemController {
  34 
  35     private final String path;
  36 
  37     public CgroupV2SubsystemController(String mountPath, String cgroupPath) {
  38         this.path = Paths.get(mountPath, cgroupPath).toString();
  39     }
  40 
  41     @Override
  42     public String path() {
  43         return path;
  44     }
  45 
  46     public static long convertStringToLong(String strval) {
  47         return CgroupSubsystemController.convertStringToLong(strval, Metrics.LONG_RETVAL_UNLIMITED);
  48     }
  49 }
< prev index next >