Package oshi.driver.linux.proc
Class Auxv
- java.lang.Object
-
- oshi.driver.linux.proc.Auxv
-
@ThreadSafe public final class Auxv extends java.lang.Object
Utility to read auxiliary vector from/proc/self/auxv
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Auxv()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.Map<java.lang.Integer,java.lang.Long>
queryAuxv()
Retrieve the auxiliary vector for the current process
-
-
-
Field Detail
-
AT_PAGESZ
public static final int AT_PAGESZ
- See Also:
- Constant Field Values
-
AT_HWCAP
public static final int AT_HWCAP
- See Also:
- Constant Field Values
-
AT_CLKTCK
public static final int AT_CLKTCK
- See Also:
- Constant Field Values
-
-
Method Detail
-
queryAuxv
public static java.util.Map<java.lang.Integer,java.lang.Long> queryAuxv()
Retrieve the auxiliary vector for the current process- Returns:
- A map of auxiliary vector keys to their respective values
- See Also:
- auxvec.h
-
-