Home | History | Annotate | Download | only in amigaos

Lines Matching defs:threads

32 /* The array of threads currently active in the application
51 clean up threads here. If any threads are still running after this call,
62 SDL_Thread **threads;
65 If the very first threads are created simultaneously, then
77 /* Expand the list of threads, if necessary */
83 threads=(SDL_Thread **)SDL_malloc((SDL_maxthreads+ARRAY_CHUNKSIZE)*
84 (sizeof *threads));
85 if ( threads == NULL ) {
89 SDL_memcpy(threads, SDL_Threads, SDL_numthreads*(sizeof *threads));
94 SDL_Threads = threads;
223 /* Add the thread to the list of available threads */