comparison src/thread/dc/SDL_systhread.c @ 1361:19418e4422cb

New configure-based build system. Still work in progress, but much improved
author Sam Lantinga <slouken@libsdl.org>
date Thu, 16 Feb 2006 10:11:48 +0000
parents c71e05b4dc2e
children d910939febfa
comparison
equal deleted inserted replaced
1360:70a9cfb4cf1b 1361:19418e4422cb
21 */ 21 */
22 22
23 /* Thread management routines for SDL */ 23 /* Thread management routines for SDL */
24 24
25 #include "SDL_thread.h" 25 #include "SDL_thread.h"
26 #include "SDL_systhread.h" 26 #include "../SDL_systhread.h"
27 27
28 #include <kos/thread.h> 28 #include <kos/thread.h>
29 29
30 #ifdef DISABLE_THREADS 30 #if SDL_THREADS_DISABLED
31 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args) 31 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
32 { 32 {
33 SDL_SetError("Threads are not supported on this platform"); 33 SDL_SetError("Threads are not supported on this platform");
34 return(-1); 34 return(-1);
35 } 35 }