Package oshi.software.os.linux
Class LinuxOSThread
java.lang.Object
oshi.software.common.AbstractOSThread
oshi.software.os.linux.LinuxOSThread
- All Implemented Interfaces:
OSThread
public class LinuxOSThread extends AbstractOSThread
-
Constructor Summary
Constructors Constructor Description LinuxOSThread(int processId, int tid) -
Method Summary
Modifier and Type Method Description longgetContextSwitches()A snapshot of the context switches the thread has done.longgetKernelTime()Kernel (privileged) time used by the thread.longgetMajorFaults()The number of major (hard) faults the thread has made which have required loading a memory page from disk.longgetMinorFaults()The number of minor (soft) faults the thread has made which have not required loading a memory page from disk.intgetPriority()Priority of the thread, the meaning of which is dependent on the OS.longgetStartMemoryAddress()The memory address above which this thread can run.longgetStartTime()The start time of the thread.OSProcess.StategetState()Getter for the fieldstate.intgetThreadId()The thread id.longgetUpTime()Elapsed/up-time of the thread.longgetUserTime()User time used by the thread.booleanupdateAttributes()Attempts to updates process attributes.Methods inherited from class oshi.software.common.AbstractOSThread
getName, getOwningProcessId, getThreadCpuLoadBetweenTicks, getThreadCpuLoadCumulative, toString
-
Constructor Details
-
LinuxOSThread
public LinuxOSThread(int processId, int tid)
-
-
Method Details
-
getThreadId
public int getThreadId()Description copied from interface:OSThreadThe thread id. The meaning of this value is OS-dependent.- Returns:
- Returns the id of the thread.
-
getState
Description copied from interface:OSThreadGetter for the field
state.- Returns:
- Returns the execution state of the task/thread.
-
getStartTime
public long getStartTime()Description copied from interface:OSThreadThe start time of the thread.- Returns:
- Returns the start time of the task/thread in number of milliseconds since January 1, 1970.
-
getStartMemoryAddress
public long getStartMemoryAddress()Description copied from interface:OSThreadThe memory address above which this thread can run.- Specified by:
getStartMemoryAddressin interfaceOSThread- Overrides:
getStartMemoryAddressin classAbstractOSThread- Returns:
- The start address.
-
getContextSwitches
public long getContextSwitches()Description copied from interface:OSThreadA snapshot of the context switches the thread has done. Since the context switches could be voluntary and non-voluntary, this gives the sum of both.- Specified by:
getContextSwitchesin interfaceOSThread- Overrides:
getContextSwitchesin classAbstractOSThread- Returns:
- sum of both voluntary and involuntary context switches.
-
getMinorFaults
public long getMinorFaults()Description copied from interface:OSThreadThe number of minor (soft) faults the thread has made which have not required loading a memory page from disk. Sometimes called reclaims. Linux only.- Specified by:
getMinorFaultsin interfaceOSThread- Overrides:
getMinorFaultsin classAbstractOSThread- Returns:
- minor faults.
-
getMajorFaults
public long getMajorFaults()Description copied from interface:OSThreadThe number of major (hard) faults the thread has made which have required loading a memory page from disk. Linux only.- Specified by:
getMajorFaultsin interfaceOSThread- Overrides:
getMajorFaultsin classAbstractOSThread- Returns:
- major faults.
-
getKernelTime
public long getKernelTime()Description copied from interface:OSThreadKernel (privileged) time used by the thread.- Returns:
- Returns the number of milliseconds the task/thread has executed in kernel/system mode.
-
getUserTime
public long getUserTime()Description copied from interface:OSThreadUser time used by the thread.- Returns:
- Returns the number of milliseconds the task/thread has executed in user mode.
-
getUpTime
public long getUpTime()Description copied from interface:OSThreadElapsed/up-time of the thread.- Returns:
- Returns the number of milliseconds since the task/thread started.
-
getPriority
public int getPriority()Description copied from interface:OSThreadPriority of the thread, the meaning of which is dependent on the OS.- Returns:
- priority.
-
updateAttributes
public boolean updateAttributes()Description copied from interface:OSThreadAttempts to updates process attributes. Returns false if the update fails, which will occur if the process no longer exists. Not implemented for macOS, as thread ID is simply an index and not unique.- Specified by:
updateAttributesin interfaceOSThread- Overrides:
updateAttributesin classAbstractOSThread- Returns:
trueif the update was successful, false if the update failed. In addition, on a failed update the thread state will be changed toOSProcess.State.INVALID.
-