SDL_!CreateThread?
NAME SYNOPSIS DESCRIPTION SEE ALSO
SDL_!CreateThread?- Creates a new thread of execution that shares its parent's properties.
#include
SDL_Thread *SDL_!CreateThread?(int (*fn)(void *), void *data);
SDL_!CreateThread? creates a new thread of execution that shares all of its parent's global memory, signal handlers, file descriptors, etc, and runs the function fn passed the void pointer data The thread quits when this function returns.
SDL_!KillThread?
One page links to SDL_CreateThread(3):