Enum ThreadPriority
Represents a SDL thread priority
public enum ThreadPriority
Fields
High = 2High thread priority
Low = 0Low thread priority
Normal = 1Normal thread priority
TimeCritical = 3Time critical thread priority
Remarks
SDL will make system changes as necessary in order to apply the thread priority. Code which attempts to control thread state related to priority should be aware that calling SDL_SetCurrentThreadPriority may alter such state. SDL_HINT_THREAD_PRIORITY_POLICY can be used to control aspects of this behavior.
This explicitly does not represent a Unix nice level!