Mercurial > sdl-ios-xcode
comparison src/thread/riscos/SDL_sysmutex_c.h @ 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 | c9b51268668f |
children | d910939febfa |
comparison
equal
deleted
inserted
replaced
1360:70a9cfb4cf1b | 1361:19418e4422cb |
---|---|
21 */ | 21 */ |
22 | 22 |
23 #ifndef _SDL_mutex_c_h | 23 #ifndef _SDL_mutex_c_h |
24 #define _SDL_mutex_c_h | 24 #define _SDL_mutex_c_h |
25 | 25 |
26 #ifndef DISABLE_THREADS | 26 #if !SDL_THREADS_DISABLED |
27 struct SDL_mutex { | 27 struct SDL_mutex { |
28 pthread_mutex_t id; | 28 pthread_mutex_t id; |
29 }; | 29 }; |
30 #endif | 30 #endif |
31 | 31 |