HomeSort by relevance Sort by last modified time
    Searched refs:SDL_Thread (Results 1 - 25 of 34) sorted by null

1 2

  /external/qemu/distrib/sdl-1.2.15/src/thread/generic/
SDL_systhread.c 26 #include "SDL_thread.h"
29 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
45 void SDL_SYS_WaitThread(SDL_Thread *thread)
50 void SDL_SYS_KillThread(SDL_Thread *thread)
  /external/qemu/distrib/sdl-1.2.15/src/thread/
SDL_systhread.h 29 #include "SDL_thread.h"
36 extern int SDL_SYS_CreateThread(SDL_Thread *thread, void *args, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
38 extern int SDL_SYS_CreateThread(SDL_Thread *thread, void *args);
47 extern void SDL_SYS_WaitThread(SDL_Thread *thread);
50 extern void SDL_SYS_KillThread(SDL_Thread *thread);
SDL_thread.c 27 #include "SDL_thread.h"
38 static SDL_Thread **SDL_Threads = NULL;
70 static void SDL_AddThread(SDL_Thread *thread)
91 SDL_Thread **threads;
92 threads = (SDL_Thread **)SDL_realloc(SDL_Threads,
106 static void SDL_DelThread(SDL_Thread *thread)
175 SDL_Thread *info;
209 DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread)
211 DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data)
214 SDL_Thread *thread
    [all...]
SDL_thread_c.h 53 struct SDL_Thread {
  /external/qemu/distrib/sdl-1.2.15/src/thread/dc/
SDL_systhread.c 26 #include "SDL_thread.h"
32 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
52 void SDL_SYS_WaitThread(SDL_Thread *thread)
57 void SDL_SYS_KillThread(SDL_Thread *thread)
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_thread.h 26 /** @file SDL_thread.h
44 /** The SDL thread structure, defined in SDL_thread.c */
45 struct SDL_Thread;
46 typedef struct SDL_Thread SDL_Thread;
78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
88 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data);
97 extern DECLSPEC Uint32 SDLCALL SDL_GetThreadID(SDL_Thread *thread);
103 extern DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread *thread, int *status);
106 extern DECLSPEC void SDLCALL SDL_KillThread(SDL_Thread *thread)
    [all...]
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_thread.h 26 /** @file SDL_thread.h
44 /** The SDL thread structure, defined in SDL_thread.c */
45 struct SDL_Thread;
46 typedef struct SDL_Thread SDL_Thread;
78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
88 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data);
97 extern DECLSPEC Uint32 SDLCALL SDL_GetThreadID(SDL_Thread *thread);
103 extern DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread *thread, int *status);
106 extern DECLSPEC void SDLCALL SDL_KillThread(SDL_Thread *thread)
    [all...]
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_thread.h 26 /** @file SDL_thread.h
44 /** The SDL thread structure, defined in SDL_thread.c */
45 struct SDL_Thread;
46 typedef struct SDL_Thread SDL_Thread;
78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
88 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data);
97 extern DECLSPEC Uint32 SDLCALL SDL_GetThreadID(SDL_Thread *thread);
103 extern DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread *thread, int *status);
106 extern DECLSPEC void SDLCALL SDL_KillThread(SDL_Thread *thread)
    [all...]
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_thread.h 26 /** @file SDL_thread.h
44 /** The SDL thread structure, defined in SDL_thread.c */
45 struct SDL_Thread;
46 typedef struct SDL_Thread SDL_Thread;
78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
88 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data);
97 extern DECLSPEC Uint32 SDLCALL SDL_GetThreadID(SDL_Thread *thread);
103 extern DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread *thread, int *status);
106 extern DECLSPEC void SDLCALL SDL_KillThread(SDL_Thread *thread)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/riscos/
SDL_systhread.c 26 #include "SDL_thread.h"
31 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
47 void SDL_SYS_WaitThread(SDL_Thread *thread)
52 void SDL_SYS_KillThread(SDL_Thread *thread)
79 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
130 void SDL_SYS_WaitThread(SDL_Thread *thread)
135 void SDL_SYS_KillThread(SDL_Thread *thread)
  /external/qemu/distrib/sdl-1.2.15/src/thread/irix/
SDL_systhread.c 32 #include "SDL_thread.h"
42 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
72 void SDL_WaitThread(SDL_Thread *thread, int *status)
81 void SDL_KillThread(SDL_Thread *thread)
  /external/qemu/distrib/sdl-1.2.15/src/thread/win32/
SDL_systhread.c 29 #include "SDL_thread.h"
99 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread)
102 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
149 void SDL_SYS_WaitThread(SDL_Thread *thread)
159 void SDL_SYS_KillThread(SDL_Thread *thread)
  /external/qemu/distrib/sdl-1.2.15/src/timer/dummy/
SDL_systimer.c 44 #include "SDL_thread.h"
48 static SDL_Thread *timer = NULL;
  /external/qemu/distrib/sdl-1.2.15/src/thread/beos/
SDL_systhread.c 31 #include "SDL_thread.h"
62 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
86 void SDL_SYS_WaitThread(SDL_Thread *thread)
93 void SDL_SYS_KillThread(SDL_Thread *thread)
  /external/qemu/distrib/sdl-1.2.15/src/thread/os2/
SDL_systhread.c 31 #include "SDL_thread.h"
60 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread)
95 void SDL_SYS_WaitThread(SDL_Thread *thread)
105 void SDL_SYS_KillThread(SDL_Thread *thread)
  /external/qemu/distrib/sdl-1.2.15/src/thread/pth/
SDL_systhread.c 33 #include "SDL_thread.h"
50 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
94 void SDL_SYS_WaitThread(SDL_Thread *thread)
99 void SDL_SYS_KillThread(SDL_Thread *thread)
  /external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
SDL_systhread.c 27 #include "SDL_thread.h"
52 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
105 void SDL_SYS_WaitThread(SDL_Thread *thread)
110 void SDL_SYS_KillThread(SDL_Thread *thread)
  /external/qemu/distrib/sdl-1.2.15/src/thread/symbian/
SDL_systhread.cpp 40 #include "SDL_thread.h"
85 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
114 void SDL_SYS_WaitThread(SDL_Thread *thread)
140 void SDL_SYS_KillThread(SDL_Thread *thread)
  /external/qemu/distrib/sdl-1.2.15/src/timer/beos/
SDL_systimer.c 28 #include "SDL_thread.h"
52 static SDL_Thread *timer = NULL;
  /external/qemu/distrib/sdl-1.2.15/src/timer/dc/
SDL_systimer.c 28 #include "SDL_thread.h"
57 static SDL_Thread *timer = NULL;
  /external/qemu/distrib/sdl-1.2.15/test/
testerror.c 9 #include "SDL_thread.h"
35 SDL_Thread *thread;
torturethread.c 10 #include "SDL_thread.h"
31 SDL_Thread *sub_threads[NUMTHREADS];
61 SDL_Thread *threads[NUMTHREADS];
testhread.c 9 #include "SDL_thread.h"
42 SDL_Thread *thread;
  /external/qemu/distrib/sdl-1.2.15/src/timer/symbian/
SDL_systimer.cpp 35 #include "SDL_thread.h"
66 static SDL_Thread *timer = NULL;
  /external/qemu/distrib/sdl-1.2.15/src/main/beos/
SDL_BeApp.cc 32 #include "SDL_thread.h"
38 static SDL_Thread *SDL_AppThread = NULL;

Completed in 97 milliseconds

1 2