Mercurial > sdl-ios-xcode
diff src/thread/amigaos/SDL_thread.c @ 21:75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
author | Sam Lantinga <slouken@lokigames.com> |
---|---|
date | Thu, 10 May 2001 20:13:29 +0000 |
parents | 74212992fb08 |
children | e8157fcb3114 |
line wrap: on
line diff
--- a/src/thread/amigaos/SDL_thread.c Thu May 10 20:10:54 2001 +0000 +++ b/src/thread/amigaos/SDL_thread.c Thu May 10 20:13:29 2001 +0000 @@ -265,6 +265,18 @@ } } +Uint32 SDL_GetThreadID(SDL_Thread *thread) +{ + Uint32 id; + + if ( thread ) { + id = thread->threadid; + } else { + id = SDL_ThreadID(); + } + return(id); +} + void SDL_KillThread(SDL_Thread *thread) { if ( thread ) {