| 834 | } |
| 835 | |
| 836 | int sl_waitthread(void *ti) |
| 837 | { |
| 838 | int res; |
| 839 | SDL_WaitThread(((sl_threadinfo *)ti)->handle, &res); |
| 840 | delete (sl_threadinfo *) ti; |
| 841 | return res; |
| 842 | } |
| 843 | |
| 844 | static vector<sl_threadinfo *> oldthreads; |
| 845 | static sl_semaphore sem_oldthreads(1, NULL); |