OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SDL_CreateThread
(Results
1 - 8
of
8
) sorted by null
/external/qemu/distrib/sdl-1.2.12/include/
SDL_thread.h
51
creates a new thread for the calling process with the
SDL_CreateThread
()
82
extern DECLSPEC SDL_Thread * SDLCALL
SDL_CreateThread
(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
85
#define
SDL_CreateThread
(fn, data)
SDL_CreateThread
(fn, data, _beginthread, _endthread)
87
#define
SDL_CreateThread
(fn, data)
SDL_CreateThread
(fn, data, NULL, NULL)
89
#define
SDL_CreateThread
(fn, data)
SDL_CreateThread
(fn, data, _beginthreadex, _endthreadex)
92
extern DECLSPEC SDL_Thread * SDLCALL
SDL_CreateThread
(int (SDLCALL *fn)(void *), void *data);
/prebuilt/darwin-x86/sdl/include/SDL/
SDL_thread.h
51
creates a new thread for the calling process with the
SDL_CreateThread
()
82
extern DECLSPEC SDL_Thread * SDLCALL
SDL_CreateThread
(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
85
#define
SDL_CreateThread
(fn, data)
SDL_CreateThread
(fn, data, _beginthread, _endthread)
87
#define
SDL_CreateThread
(fn, data)
SDL_CreateThread
(fn, data, NULL, NULL)
89
#define
SDL_CreateThread
(fn, data)
SDL_CreateThread
(fn, data, _beginthreadex, _endthreadex)
92
extern DECLSPEC SDL_Thread * SDLCALL
SDL_CreateThread
(int (SDLCALL *fn)(void *), void *data);
/prebuilt/linux-x86/sdl/include/SDL/
SDL_thread.h
51
creates a new thread for the calling process with the
SDL_CreateThread
()
82
extern DECLSPEC SDL_Thread * SDLCALL
SDL_CreateThread
(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
85
#define
SDL_CreateThread
(fn, data)
SDL_CreateThread
(fn, data, _beginthread, _endthread)
87
#define
SDL_CreateThread
(fn, data)
SDL_CreateThread
(fn, data, NULL, NULL)
89
#define
SDL_CreateThread
(fn, data)
SDL_CreateThread
(fn, data, _beginthreadex, _endthreadex)
92
extern DECLSPEC SDL_Thread * SDLCALL
SDL_CreateThread
(int (SDLCALL *fn)(void *), void *data);
/prebuilt/windows/sdl/include/SDL/
SDL_thread.h
51
creates a new thread for the calling process with the
SDL_CreateThread
()
82
extern DECLSPEC SDL_Thread * SDLCALL
SDL_CreateThread
(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
85
#define
SDL_CreateThread
(fn, data)
SDL_CreateThread
(fn, data, _beginthread, _endthread)
87
#define
SDL_CreateThread
(fn, data)
SDL_CreateThread
(fn, data, NULL, NULL)
89
#define
SDL_CreateThread
(fn, data)
SDL_CreateThread
(fn, data, _beginthreadex, _endthreadex)
92
extern DECLSPEC SDL_Thread * SDLCALL
SDL_CreateThread
(int (SDLCALL *fn)(void *), void *data);
/external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_audio.c
552
#undef
SDL_CreateThread
553
audio->thread =
SDL_CreateThread
(SDL_RunAudio, audio, NULL, NULL);
555
audio->thread =
SDL_CreateThread
(SDL_RunAudio, audio);
/external/qemu/distrib/sdl-1.2.12/src/thread/
SDL_thread.c
206
#undef
SDL_CreateThread
207
DECLSPEC SDL_Thread * SDLCALL
SDL_CreateThread
(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread)
209
DECLSPEC SDL_Thread * SDLCALL
SDL_CreateThread
(int (SDLCALL *fn)(void *), void *data)
/external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/
SDL_thread.c
190
SDL_Thread *
SDL_CreateThread
(int (*fn)(void *), void *data)
/external/qemu/distrib/sdl-1.2.12/src/events/
SDL_events.c
173
#undef
SDL_CreateThread
174
SDL_EventThread =
SDL_CreateThread
(SDL_GobbleEvents, NULL, NULL, NULL);
176
SDL_EventThread =
SDL_CreateThread
(SDL_GobbleEvents, NULL);
Completed in 534 milliseconds