Added SDL_DetachThread() API.

This commit is contained in:
Ryan C. Gordon
2013-11-14 00:52:39 -05:00
parent 7550ddcc05
commit 8d6e03f353
8 changed files with 118 additions and 5 deletions

View File

@@ -62,4 +62,10 @@ SDL_SYS_WaitThread(SDL_Thread * thread)
return;
}
void
SDL_SYS_DetachThread(SDL_Thread * thread)
{
return;
}
/* vi: set ts=4 sw=4 expandtab: */