comparison src/thread/SDL_thread.c @ 4468:82f357a91d43

SDL_KillThread() is no longer supported - it was always dangerous! :)
author Sam Lantinga <slouken@libsdl.org>
date Mon, 24 May 2010 22:56:36 -0700
parents f7b03b6838cb
children 791b3256fb22
comparison
equal deleted inserted replaced
4467:0baef09fe702 4468:82f357a91d43
303 id = SDL_ThreadID(); 303 id = SDL_ThreadID();
304 } 304 }
305 return id; 305 return id;
306 } 306 }
307 307
308 void
309 SDL_KillThread(SDL_Thread * thread)
310 {
311 /* This is a no-op in SDL 1.3 and later. */
312 }
313
314 /* vi: set ts=4 sw=4 expandtab: */ 308 /* vi: set ts=4 sw=4 expandtab: */