Mercurial > sdl-ios-xcode
comparison src/thread/beos/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 |
---|---|
96 status_t the_status; | 96 status_t the_status; |
97 | 97 |
98 wait_for_thread(thread->handle, &the_status); | 98 wait_for_thread(thread->handle, &the_status); |
99 } | 99 } |
100 | 100 |
101 void | |
102 SDL_SYS_KillThread(SDL_Thread * thread) | |
103 { | |
104 kill_thread(thread->handle); | |
105 } | |
106 | |
107 /* vi: set ts=4 sw=4 expandtab: */ | 101 /* vi: set ts=4 sw=4 expandtab: */ |