Searched defs:SDL_CreateThread (Results 1 - 4 of 4) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_thread.h52 * creates a new thread for the calling process with the SDL_CreateThread()
78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
81 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthread, _endthread) macro
83 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, NULL, NULL) macro
85 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex) macro
88 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data);
/external/qemu/distrib/sdl-1.2.15/src/thread/
H A DSDL_thread.c208 #undef SDL_CreateThread macro
209 DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread) function
211 DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data)
/external/qemu/distrib/sdl-1.2.15/src/audio/
H A DSDL_audio.c552 #undef SDL_CreateThread macro
553 audio->thread = SDL_CreateThread(SDL_RunAudio, audio, NULL, NULL);
555 audio->thread = SDL_CreateThread(SDL_RunAudio, audio);
/external/qemu/distrib/sdl-1.2.15/src/events/
H A DSDL_events.c173 #undef SDL_CreateThread macro
174 SDL_EventThread = SDL_CreateThread(SDL_GobbleEvents, NULL, NULL, NULL);
176 SDL_EventThread = SDL_CreateThread(SDL_GobbleEvents, NULL);

Completed in 5811 milliseconds