| 70 | |
| 71 | SDL_LockMutex(resolvermutex); |
| 72 | loopi(RESOLVERTHREADS) |
| 73 | { |
| 74 | resolverthread &rt = resolverthreads.add(); |
| 75 | rt.query = NULL; |
| 76 | rt.starttime = 0; |
| 77 | rt.thread = SDL_CreateThread(resolverloop, "ResolverThread", &rt); |
| 78 | } |
| 79 | SDL_UnlockMutex(resolvermutex); |
| 80 | } |
| 81 |
no test coverage detected