void changeCurrentThreadPriority(TThreadPriority priority)
Change the priority of the current thread - for Windows, see also changeCurrentProcessPriority() ...
 
Win32: THREAD_PRIORITY_ABOVE_NORMAL. 
 
void changeCurrentProcessPriority(TProcessPriority priority)
Change the priority of the given process (it applies to all the threads, plus independent modifiers f...
 
TProcessPriority
The type for cross-platform process (application) priorities. 
 
Win32: THREAD_PRIORITY_LOWEST. 
 
Win32: THREAD_PRIORITY_IDLE. 
 
Win32: THREAD_PRIORITY_NORMAL. 
 
TThreadPriority
The type for cross-platform thread priorities. 
 
Win32: THREAD_PRIORITY_TIME_CRITICAL. 
 
Win32: THREAD_PRIORITY_HIGHEST. 
 
Win32: THREAD_PRIORITY_BELOW_NORMAL.