diff options
author | 2012-09-16 05:24:30 +0000 | |
---|---|---|
committer | 2012-09-16 05:24:30 +0000 | |
commit | 1a301849034da9956b893453acce8e0f9168e150 (patch) | |
tree | a39f7a6c6b4c54b7993e58cd22ea6b6bd25f37cf /src/osd/sdl/sdlsync_os2.c | |
parent | 91f928d6cd774c9526c7fde7e0860aded24d08a5 (diff) |
Final round of struct/union/enum normalization.
Diffstat (limited to 'src/osd/sdl/sdlsync_os2.c')
-rw-r--r-- | src/osd/sdl/sdlsync_os2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osd/sdl/sdlsync_os2.c b/src/osd/sdl/sdlsync_os2.c index 96ce1656a68..de23ea104b2 100644 --- a/src/osd/sdl/sdlsync_os2.c +++ b/src/osd/sdl/sdlsync_os2.c @@ -33,7 +33,7 @@ #define pthread_t int #define pthread_self _gettid -struct _osd_lock { +struct osd_lock { volatile pthread_t holder; INT32 count; #ifdef PTR64 @@ -43,7 +43,7 @@ struct _osd_lock { #endif }; -struct _osd_event { +struct osd_event { HMTX hmtx; HEV hev; volatile INT32 autoreset; @@ -54,13 +54,13 @@ struct _osd_event { // TYPE DEFINITIONS //============================================================ -struct _osd_thread { +struct osd_thread { pthread_t thread; osd_thread_callback callback; void *param; }; -struct _osd_scalable_lock +struct osd_scalable_lock { struct { |