comparison src/thread/generic/SDL_systhread.c @ 2779:4436464c4f51

Fixed Bugzilla bug #205 Removed SDL_KillThread() from the API, as it isn't safe on many platforms.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 24 Nov 2008 00:18:42 +0000
parents c121d94672cb
children 99210400e8b9
comparison
equal deleted inserted replaced
2778:38dfc890ee6b 2779:4436464c4f51
49 SDL_SYS_WaitThread(SDL_Thread * thread) 49 SDL_SYS_WaitThread(SDL_Thread * thread)
50 { 50 {
51 return; 51 return;
52 } 52 }
53 53
54 void
55 SDL_SYS_KillThread(SDL_Thread * thread)
56 {
57 return;
58 }
59
60 /* vi: set ts=4 sw=4 expandtab: */ 54 /* vi: set ts=4 sw=4 expandtab: */