author | Sam Lantinga <slouken@libsdl.org> |
Tue, 21 Feb 2006 08:46:50 +0000 | |
changeset 1402 | d910939febfa |
parent 1361 | 19418e4422cb |
child 1662 | 782fd950bd46 |
child 1895 | c121d94672cb |
child 3888 | 6d2e1961661a |
permissions | -rw-r--r-- |
slouken@0 | 1 |
/* |
slouken@0 | 2 |
SDL - Simple DirectMedia Layer |
slouken@1312 | 3 |
Copyright (C) 1997-2006 Sam Lantinga |
slouken@0 | 4 |
|
slouken@0 | 5 |
This library is free software; you can redistribute it and/or |
slouken@1312 | 6 |
modify it under the terms of the GNU Lesser General Public |
slouken@0 | 7 |
License as published by the Free Software Foundation; either |
slouken@1312 | 8 |
version 2.1 of the License, or (at your option) any later version. |
slouken@0 | 9 |
|
slouken@0 | 10 |
This library is distributed in the hope that it will be useful, |
slouken@0 | 11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
slouken@0 | 12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
slouken@1312 | 13 |
Lesser General Public License for more details. |
slouken@0 | 14 |
|
slouken@1312 | 15 |
You should have received a copy of the GNU Lesser General Public |
slouken@1312 | 16 |
License along with this library; if not, write to the Free Software |
slouken@1312 | 17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
slouken@0 | 18 |
|
slouken@0 | 19 |
Sam Lantinga |
slouken@252 | 20 |
slouken@libsdl.org |
slouken@0 | 21 |
*/ |
slouken@1402 | 22 |
#include "SDL_config.h" |
slouken@0 | 23 |
|
slouken@0 | 24 |
#ifndef _SDL_thread_c_h |
slouken@0 | 25 |
#define _SDL_thread_c_h |
slouken@0 | 26 |
|
slouken@1361 | 27 |
/* Need the definitions of SYS_ThreadHandle */ |
slouken@1361 | 28 |
#if SDL_THREADS_DISABLED |
slouken@1361 | 29 |
#include "generic/SDL_systhread_c.h" |
slouken@1361 | 30 |
#elif SDL_THREAD_AMIGA |
slouken@1361 | 31 |
#include "amigaos/SDL_systhread_c.h" |
slouken@1361 | 32 |
#elif SDL_THREAD_BEOS |
slouken@1361 | 33 |
#include "beos/SDL_systhread_c.h" |
slouken@1361 | 34 |
#elif SDL_THREAD_DC |
slouken@1361 | 35 |
#include "dc/SDL_systhread_c.h" |
slouken@1361 | 36 |
#elif SDL_THREAD_EPOC |
slouken@1361 | 37 |
#include "epoc/SDL_systhread_c.h" |
slouken@1361 | 38 |
#elif SDL_THREAD_OS2 |
slouken@1361 | 39 |
#include "os2/SDL_systhread_c.h" |
slouken@1361 | 40 |
#elif SDL_THREAD_PTH |
slouken@1361 | 41 |
#include "pth/SDL_systhread_c.h" |
slouken@1361 | 42 |
#elif SDL_THREAD_PTHREAD |
slouken@1361 | 43 |
#include "pthread/SDL_systhread_c.h" |
slouken@1361 | 44 |
#elif SDL_THREAD_SPROC |
slouken@1361 | 45 |
#include "irix/SDL_systhread_c.h" |
slouken@1361 | 46 |
#elif SDL_THREAD_WIN32 |
slouken@1361 | 47 |
#include "win32/SDL_systhread_c.h" |
slouken@1361 | 48 |
#else |
slouken@1361 | 49 |
#error Need thread implementation for this platform |
slouken@1361 | 50 |
#include "generic/SDL_systhread_c.h" |
slouken@1361 | 51 |
#endif |
slouken@1361 | 52 |
#include "../SDL_error_c.h" |
slouken@0 | 53 |
|
slouken@0 | 54 |
/* This is the system-independent thread info structure */ |
slouken@0 | 55 |
struct SDL_Thread { |
slouken@0 | 56 |
Uint32 threadid; |
slouken@0 | 57 |
SYS_ThreadHandle handle; |
slouken@0 | 58 |
int status; |
slouken@0 | 59 |
SDL_error errbuf; |
slouken@0 | 60 |
void *data; |
slouken@0 | 61 |
}; |
slouken@0 | 62 |
|
slouken@0 | 63 |
/* This is the function called to run a thread */ |
slouken@0 | 64 |
extern void SDL_RunThread(void *data); |
slouken@0 | 65 |
|
slouken@0 | 66 |
#endif /* _SDL_thread_c_h */ |