Mercurial > sdl-ios-xcode
comparison src/thread/generic/SDL_systhread.c @ 1668:4da1ee79c9af SDL-1.3
more tweaking indent options
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 29 May 2006 04:04:35 +0000 |
parents | 782fd950bd46 |
children |
comparison
equal
deleted
inserted
replaced
1667:1fddae038bc8 | 1668:4da1ee79c9af |
---|---|
25 | 25 |
26 #include "SDL_thread.h" | 26 #include "SDL_thread.h" |
27 #include "../SDL_systhread.h" | 27 #include "../SDL_systhread.h" |
28 | 28 |
29 int | 29 int |
30 SDL_SYS_CreateThread (SDL_Thread * thread, void *args) | 30 SDL_SYS_CreateThread(SDL_Thread * thread, void *args) |
31 { | 31 { |
32 SDL_SetError ("Threads are not supported on this platform"); | 32 SDL_SetError("Threads are not supported on this platform"); |
33 return (-1); | 33 return (-1); |
34 } | 34 } |
35 | 35 |
36 void | 36 void |
37 SDL_SYS_SetupThread (void) | 37 SDL_SYS_SetupThread(void) |
38 { | 38 { |
39 return; | 39 return; |
40 } | 40 } |
41 | 41 |
42 Uint32 | 42 Uint32 |
43 SDL_ThreadID (void) | 43 SDL_ThreadID(void) |
44 { | 44 { |
45 return (0); | 45 return (0); |
46 } | 46 } |
47 | 47 |
48 void | 48 void |
49 SDL_SYS_WaitThread (SDL_Thread * thread) | 49 SDL_SYS_WaitThread(SDL_Thread * thread) |
50 { | 50 { |
51 return; | 51 return; |
52 } | 52 } |
53 | 53 |
54 void | 54 void |
55 SDL_SYS_KillThread (SDL_Thread * thread) | 55 SDL_SYS_KillThread(SDL_Thread * thread) |
56 { | 56 { |
57 return; | 57 return; |
58 } | 58 } |
59 | 59 |
60 /* vi: set ts=4 sw=4 expandtab: */ | 60 /* vi: set ts=4 sw=4 expandtab: */ |