Mercurial > sdl-ios-xcode
diff src/thread/SDL_thread.c @ 4661:03dcb795c583
Merged changes from the main SDL codebase
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 12 Jul 2010 21:09:23 -0700 |
parents | 791b3256fb22 |
children | b530ef003506 |
line wrap: on
line diff
--- a/src/thread/SDL_thread.c Mon Jul 12 22:03:25 2010 -0400 +++ b/src/thread/SDL_thread.c Mon Jul 12 21:09:23 2010 -0700 @@ -38,7 +38,7 @@ static SDL_Thread **SDL_Threads = NULL; static SDL_mutex *thread_lock = NULL; -int +static int SDL_ThreadsInit(void) { int retval; @@ -56,7 +56,7 @@ clean up threads here. If any threads are still running after this call, they will no longer have access to any per-thread data. */ -void +static void SDL_ThreadsQuit(void) { SDL_mutex *mutex; @@ -305,10 +305,4 @@ return id; } -void -SDL_KillThread(SDL_Thread * thread) -{ - /* This is a no-op in SDL 1.3 and later. */ -} - /* vi: set ts=4 sw=4 expandtab: */