enum mrpt::system::TThreadPriority
Overview
The type for cross-platform thread priorities. More…
#include <scheduler.h> enum TThreadPriority { tpLowests = -15, tpLower = -2, tpLow = -1, tpNormal = 0, tpHigh = 1, tpHigher = 2, tpHighest = 15, };
Detailed Documentation
The type for cross-platform thread priorities.
See also:
changeThreadPriority
Enum Values
tpLowests
Win32: THREAD_PRIORITY_IDLE.
tpLower
Win32: THREAD_PRIORITY_LOWEST.
tpLow
Win32: THREAD_PRIORITY_BELOW_NORMAL.
tpNormal
Win32: THREAD_PRIORITY_NORMAL.
tpHigh
Win32: THREAD_PRIORITY_ABOVE_NORMAL.
tpHigher
Win32: THREAD_PRIORITY_HIGHEST.
tpHighest
Win32: THREAD_PRIORITY_TIME_CRITICAL.