| 870 | |
| 871 | static SDL_threadID mainthreadid = SDL_ThreadID(); |
| 872 | bool ismainthread() { return mainthreadid == SDL_ThreadID(); } |
| 873 | |
| 874 | #else |
| 875 | struct sl_threadinfo { int (*fn)(void *); void *data; pthread_t handle; int res; volatile char done; }; |
no outgoing calls
no test coverage detected