1.1 --- a/src/thread/generic/SDL_systhread.c Sun May 21 17:27:13 2006 +0000
1.2 +++ b/src/thread/generic/SDL_systhread.c Sun May 28 13:04:16 2006 +0000
1.3 @@ -26,29 +26,35 @@
1.4 #include "SDL_thread.h"
1.5 #include "../SDL_systhread.h"
1.6
1.7 -int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
1.8 +int
1.9 +SDL_SYS_CreateThread (SDL_Thread * thread, void *args)
1.10 {
1.11 - SDL_SetError("Threads are not supported on this platform");
1.12 - return(-1);
1.13 + SDL_SetError ("Threads are not supported on this platform");
1.14 + return (-1);
1.15 }
1.16
1.17 -void SDL_SYS_SetupThread(void)
1.18 +void
1.19 +SDL_SYS_SetupThread (void)
1.20 {
1.21 - return;
1.22 + return;
1.23 }
1.24
1.25 -Uint32 SDL_ThreadID(void)
1.26 +Uint32
1.27 +SDL_ThreadID (void)
1.28 {
1.29 - return(0);
1.30 + return (0);
1.31 }
1.32
1.33 -void SDL_SYS_WaitThread(SDL_Thread *thread)
1.34 +void
1.35 +SDL_SYS_WaitThread (SDL_Thread * thread)
1.36 {
1.37 - return;
1.38 + return;
1.39 }
1.40
1.41 -void SDL_SYS_KillThread(SDL_Thread *thread)
1.42 +void
1.43 +SDL_SYS_KillThread (SDL_Thread * thread)
1.44 {
1.45 - return;
1.46 + return;
1.47 }
1.48
1.49 +/* vi: set ts=4 sw=4 expandtab: */