HomeSort by relevance Sort by last modified time
    Searched refs:SDL_Threads (Results 1 - 2 of 2) sorted by null

  /external/qemu/distrib/sdl-1.2.12/src/thread/
SDL_thread.c 38 static SDL_Thread **SDL_Threads = NULL;
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 == NULL )
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/
SDL_thread.c 38 static SDL_Thread **SDL_Threads = NULL;
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 101 milliseconds