diff options
Diffstat (limited to 'src/osd/sdl/sdlsync_ntc.c')
-rw-r--r-- | src/osd/sdl/sdlsync_ntc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osd/sdl/sdlsync_ntc.c b/src/osd/sdl/sdlsync_ntc.c index b7d3c2fa994..4afd5cacdf6 100644 --- a/src/osd/sdl/sdlsync_ntc.c +++ b/src/osd/sdl/sdlsync_ntc.c @@ -40,7 +40,7 @@ #include <errno.h> #include <sys/time.h> -struct _osd_lock { +struct osd_lock { volatile pthread_t holder; INT32 count; #ifdef PTR64 @@ -50,7 +50,7 @@ struct _osd_lock { #endif }; -struct _osd_event { +struct osd_event { pthread_mutex_t mutex; pthread_cond_t cond; volatile INT32 autoreset; @@ -67,11 +67,11 @@ struct _osd_event { // TYPE DEFINITIONS //============================================================ -struct _osd_thread { +struct osd_thread { pthread_t thread; }; -struct _osd_scalable_lock +struct osd_scalable_lock { struct { |