Searched refs:SDL_Threads (Results 1 - 2 of 2) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/src/thread/
H A DSDL_thread.c38 static SDL_Thread **SDL_Threads = NULL; variable
92 threads = (SDL_Thread **)SDL_realloc(SDL_Threads,
99 SDL_Threads = threads;
101 SDL_Threads[SDL_numthreads++] = thread;
115 if ( thread == SDL_Threads[i] ) {
122 SDL_Threads[i] = SDL_Threads[i+1];
127 SDL_free(SDL_Threads);
128 SDL_Threads = NULL;
137 if ( SDL_Threads
[all...]
/external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/
H A DSDL_thread.c38 static SDL_Thread **SDL_Threads = NULL; variable
89 SDL_memcpy(threads, SDL_Threads, SDL_numthreads*(sizeof *threads));
91 if ( SDL_Threads ) {
92 SDL_free(SDL_Threads);
94 SDL_Threads = threads;
96 SDL_Threads[SDL_numthreads++] = thread;
108 if ( thread == SDL_Threads[i] ) {
115 SDL_Threads[i] = SDL_Threads[i+1];
136 if ( SDL_Threads ) {
[all...]

Completed in 31 milliseconds