OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SDL_threadID
(Results
1 - 5
of
5
) sorted by null
/prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_thread.h
49
typedef unsigned long
SDL_threadID
;
158
extern DECLSPEC
SDL_threadID
SDLCALL
SDL_ThreadID
(void);
163
* Equivalent to
SDL_ThreadID
() if the specified thread is NULL.
165
extern DECLSPEC
SDL_threadID
SDLCALL SDL_GetThreadID(SDL_Thread * thread);
/prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_thread.h
49
typedef unsigned long
SDL_threadID
;
158
extern DECLSPEC
SDL_threadID
SDLCALL
SDL_ThreadID
(void);
163
* Equivalent to
SDL_ThreadID
() if the specified thread is NULL.
165
extern DECLSPEC
SDL_threadID
SDLCALL SDL_GetThreadID(SDL_Thread * thread);
/prebuilts/misc/windows/sdl2/include/
SDL_thread.h
49
typedef unsigned long
SDL_threadID
;
158
extern DECLSPEC
SDL_threadID
SDLCALL
SDL_ThreadID
(void);
163
* Equivalent to
SDL_ThreadID
() if the specified thread is NULL.
165
extern DECLSPEC
SDL_threadID
SDLCALL SDL_GetThreadID(SDL_Thread * thread);
/prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_thread.h
49
typedef unsigned long
SDL_threadID
;
158
extern DECLSPEC
SDL_threadID
SDLCALL
SDL_ThreadID
(void);
163
* Equivalent to
SDL_ThreadID
() if the specified thread is NULL.
165
extern DECLSPEC
SDL_threadID
SDLCALL SDL_GetThreadID(SDL_Thread * thread);
/prebuilts/misc/windows/sdl2/test/
testlock.c
26
static
SDL_threadID
mainthread;
43
SDL_Log("Process %lu: exiting\n",
SDL_ThreadID
());
56
SDL_threadID
id =
SDL_ThreadID
();
69
if (
SDL_ThreadID
() == mainthread)
72
SDL_Log("Process %lu ready to work\n",
SDL_ThreadID
());
77
SDL_Log("Process %lu, working!\n",
SDL_ThreadID
());
79
SDL_Log("Process %lu, done!\n",
SDL_ThreadID
());
87
if (
SDL_ThreadID
() == mainthread && doterminate) {
88
SDL_Log("Process %lu: raising SIGTERM\n",
SDL_ThreadID
());
[
all
...]
Completed in 34 milliseconds