Lines Matching defs:SDL_CreateThread
66 * The function passed to SDL_CreateThread().
76 * creates a new thread for the calling process with the SDL_CreateThread()
107 SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data,
114 #if defined(SDL_CreateThread) && SDL_DYNAMIC_API
115 #undef SDL_CreateThread
116 #define SDL_CreateThread(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex)
118 #define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex)
142 SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data);
147 * Get the thread name, as it was specified in SDL_CreateThread().