Create a new thread with a default stack size.
Defined in SDL_thread.h
extern DECLSPEC SDL_Thread *SDLCALL
const char *name, void *data); SDL_CreateThread(SDL_ThreadFunction fn,
SDL_ThreadFunction | fn | the SDL_ThreadFunction function to call in the new thread. |
const char * | name | the name of the thread. |
void * | data | a pointer that is passed to fn . |
(SDL_Thread *) Returns an opaque pointer to the new thread object on success, NULL if the new thread could not be created; call SDL_GetError() for more information.
This is equivalent to calling:
0, data); SDL_CreateThreadWithStackSize(fn, name,
This function is available since SDL 2.0.0.