| 432 | } |
| 433 | |
| 434 | SDL_Thread * |
| 435 | SDL_CreateThreadInternal(int (SDLCALL * fn) (void *), const char *name, |
| 436 | const size_t stacksize, void *data) { |
| 437 | #ifdef SDL_PASSED_BEGINTHREAD_ENDTHREAD |
| 438 | return SDL_CreateThreadWithStackSize(fn, name, stacksize, data, NULL, NULL); |
| 439 | #else |
| 440 | return SDL_CreateThreadWithStackSize(fn, name, stacksize, data); |
| 441 | #endif |
| 442 | } |
| 443 | |
| 444 | SDL_threadID |
| 445 | SDL_GetThreadID(SDL_Thread * thread) |
no test coverage detected