SDL_SetCurrentThreadPriority - Man Page
Set the priority for the current thread.
Synopsis
#include <SDL3/SDL_thread.h> bool SDL_SetCurrentThreadPriority(SDL_ThreadPriority priority);
Description
Note that some platforms will not let you alter the priority (or at least, promote the thread to a higher priority) at all, and some require you to be an administrator account. Be prepared for this to fail.
Function Parameters
- priority
the SDL_ThreadPriority to set.
Return Value
Returns true on success or false on failure; call SDL_GetError() for more information.
Thread Safety
It is safe to call this function from any thread.
Availability
This function is available since SDL 3.2.0.
Info
SDL 3.4.8 Simple Directmedia Layer SDL3 FUNCTIONS