diff options
Diffstat (limited to 'src/osd/sdl/sdlsync_sdl.c')
-rw-r--r-- | src/osd/sdl/sdlsync_sdl.c | 6 |
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; }; |