summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/sdl/sdlsync_sdl.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_sdl.c
parent91f928d6cd774c9526c7fde7e0860aded24d08a5 (diff)
Final round of struct/union/enum normalization.
Diffstat (limited to 'src/osd/sdl/sdlsync_sdl.c')
-rw-r--r--src/osd/sdl/sdlsync_sdl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/osd/sdl/sdlsync_sdl.c b/src/osd/sdl/sdlsync_sdl.c
index 734cbcc67f0..3ee7cc41060 100644
--- a/src/osd/sdl/sdlsync_sdl.c
+++ b/src/osd/sdl/sdlsync_sdl.c
@@ -34,7 +34,7 @@ struct hidden_mutex_t {
volatile INT32 threadid;
};
-struct _osd_event {
+struct osd_event {
SDL_mutex * mutex;
SDL_cond * cond;
volatile INT32 autoreset;
@@ -45,13 +45,13 @@ struct _osd_event {
// TYPE DEFINITIONS
//============================================================
-struct _osd_thread {
+struct osd_thread {
SDL_Thread * thread;
osd_thread_callback callback;
void *param;
};
-struct _osd_scalable_lock
+struct osd_scalable_lock
{
SDL_mutex * mutex;
};