DOKK / manpages / debian 13 / libsdl3-doc / SDL_RunOnMainThread.3.en
SDL_RunOnMainThread(3) SDL3 FUNCTIONS SDL_RunOnMainThread(3)

SDL_RunOnMainThread - Call a function on the main thread during event processing.

Defined in SDL3/SDL_init.h

#include "SDL3/SDL.h"
bool SDL_RunOnMainThread(SDL_MainThreadCallback callback, void *userdata, bool wait_complete);

If this is called on the main thread, the callback is executed immediately. If this is called on another thread, this callback is queued for execution on the main thread during event processing.

Be careful of deadlocks when using this functionality. You should not have the main thread wait for the current thread while this function is being called with wait_complete true.

the callback to call on the main thread.
a pointer that is passed to callback .
true to wait for the callback to complete, false to return immediately.

Returns true on success or false on failure; call

SDL_GetError () for more information.

It is safe to call this function from any thread.

This function is available since SDL 3.2.0.

(3), SDL_IsMainThread(3)

SDL 3.2.10 Simple Directmedia Layer