pub unsafe extern "C" fn SDL_SetCurrentThreadPriority(
priority: SDL_ThreadPriority,
) -> boolExpand description
Set the priority for the current thread.
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.
§Parameters
priority: theSDL_ThreadPriorityto set.
§Return value
Returns true on success or false on failure; call SDL_GetError() for more
information.
§Availability
This function is available since SDL 3.2.0.