summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/sdl/sdlsync_os2.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2012-09-16 05:24:30 +0000
committer Aaron Giles <aaron@aarongiles.com>2012-09-16 05:24:30 +0000
commit1a301849034da9956b893453acce8e0f9168e150 (patch)
treea39f7a6c6b4c54b7993e58cd22ea6b6bd25f37cf /src/osd/sdl/sdlsync_os2.c
parent91f928d6cd774c9526c7fde7e0860aded24d08a5 (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.c8
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
{