]> git.sesse.net Git - vlc/blobdiff - include/vlc_threads.h
POSIX: use pthread-based timers
[vlc] / include / vlc_threads.h
index 58b337fca8d8872b3d2db8997c4e1c12a9bcfb23..1e4324f1da3de9b958cbf389383720bf5d63f293 100644 (file)
@@ -109,21 +109,7 @@ typedef pthread_mutex_t vlc_mutex_t;
 typedef pthread_cond_t  vlc_cond_t;
 typedef pthread_rwlock_t vlc_rwlock_t;
 typedef pthread_key_t   vlc_threadvar_t;
-typedef struct vlc_timer_t vlc_timer_t;
-
-#ifndef __APPLE__
-/* There is no POSIX timer on Mac OS X. Move that to configure eventually. */
-#define HAVE_POSIX_TIMER 1
-#endif
-
-struct vlc_timer_t
-{
-#ifdef HAVE_POSIX_TIMER
-    timer_t handle;
-#endif
-    void (*func) (void *);
-    void *data;
-};
+typedef struct vlc_timer *vlc_timer_t;
 
 #elif defined( WIN32 )
 typedef HANDLE vlc_thread_t;