]> git.sesse.net Git - vlc/commitdiff
Remove useless timer parameter
authorRémi Denis-Courmont <remi@remlab.net>
Wed, 3 Jun 2009 16:03:55 +0000 (19:03 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Wed, 3 Jun 2009 16:03:55 +0000 (19:03 +0300)
include/vlc_threads.h
modules/access/dvdnav.c
modules/misc/screensaver.c
src/misc/pthread.c
src/misc/w32thread.c

index 8cf3d37a5fab07ff262575bfe8afb26fc61df2e7..316bf73f7f81d100408f5a18a0fd9ff4a272a9af 100644 (file)
@@ -112,7 +112,7 @@ typedef struct vlc_timer_t vlc_timer_t;
 struct vlc_timer_t
 {
     timer_t handle;
-    void (*func) (vlc_timer_t *, void *);
+    void (*func) (void *);
     void *data;
 };
 
@@ -181,7 +181,7 @@ VLC_EXPORT( void, vlc_cancel, (vlc_thread_t) );
 VLC_EXPORT( void, vlc_join, (vlc_thread_t, void **) );
 VLC_EXPORT (void, vlc_control_cancel, (int cmd, ...));
 
-VLC_EXPORT( int, vlc_timer_create, (vlc_timer_t *, void (*) (vlc_timer_t *, void *), void *) LIBVLC_USED );
+VLC_EXPORT( int, vlc_timer_create, (vlc_timer_t *, void (*) (void *), void *) LIBVLC_USED );
 VLC_EXPORT( void, vlc_timer_destroy, (vlc_timer_t *) );
 VLC_EXPORT( void, vlc_timer_schedule, (vlc_timer_t *, bool, mtime_t, mtime_t) );
 VLC_EXPORT( unsigned, vlc_timer_getoverrun, (const vlc_timer_t *) LIBVLC_USED );
index 2d49fbeef0bf856a10815719cc2633dfcccde198..6d0f2a6ebd050d3d91290b4bb22be17bf9d55b66 100644 (file)
@@ -163,7 +163,7 @@ static char *DemuxGetLanguageCode( demux_t *p_demux, const char *psz_var );
 
 static int ControlInternal( demux_t *, int, ... );
 
-static void StillTimer( vlc_timer_t *, void * );
+static void StillTimer( void * );
 
 static int EventKey( vlc_object_t *, char const *,
                      vlc_value_t, vlc_value_t, void * );
@@ -1300,7 +1300,7 @@ static void ESNew( demux_t *p_demux, int i_id )
 /*****************************************************************************
  * Still image end
  *****************************************************************************/
-static void StillTimer( vlc_timer_t *id, void *p_data )
+static void StillTimer( void *p_data )
 {
     demux_sys_t    *p_sys = p_data;
 
@@ -1309,8 +1309,6 @@ static void StillTimer( vlc_timer_t *id, void *p_data )
     p_sys->still.b_enabled = false;
     dvdnav_still_skip( p_sys->dvdnav );
     vlc_mutex_unlock( &p_sys->still.lock );
-
-    (void) id;
 }
 
 static int EventMouse( vlc_object_t *p_vout, char const *psz_var,
index 902e8d571cfcc56baae3d0a17676ad4e09827166..7abfea1e32f461cbbb1840476dcd40c470de1606 100644 (file)
@@ -61,7 +61,7 @@
 static int  Activate     ( vlc_object_t * );
 static void  Deactivate   ( vlc_object_t * );
 
-static void Timer( vlc_timer_t *, void * );
+static void Timer( void * );
 
 #ifdef HAVE_DBUS
 
@@ -176,7 +176,7 @@ static void Execute( intf_thread_t *p_this, const char *const *ppsz_args )
  * This part of the module is in a separate thread so that we do not have
  * too much system() overhead.
  *****************************************************************************/
-static void Timer( vlc_timer_t *id, void *data )
+static void Timer( void *data )
 {
     intf_thread_t *p_intf = data;
     playlist_t *p_playlist = pl_Hold( p_intf );
@@ -211,8 +211,6 @@ static void Timer( vlc_timer_t *id, void *data )
     Execute( p_intf, ppsz_gsargs );
 #endif
     /* FIXME: add support for other screensavers */
-
-    (void)id;
 }
 
 #ifdef HAVE_DBUS
index be39b1b53155478ad00b4e67d5a117371423d60b..7efa53d64d0043675d03a75b3162f8a996619a0a 100644 (file)
@@ -588,7 +588,7 @@ void vlc_control_cancel (int cmd, ...)
 static void vlc_timer_do (union sigval val)
 {
     vlc_timer_t *id = val.sival_ptr;
-    id->func (id, id->data);
+    id->func (id->data);
 }
 
 /**
@@ -601,8 +601,7 @@ static void vlc_timer_do (union sigval val)
  * @param data parameter for the timer function
  * @return 0 on success, a system error code otherwise.
  */
-int vlc_timer_create (vlc_timer_t *id, void (*func) (vlc_timer_t *, void *),
-                      void *data)
+int vlc_timer_create (vlc_timer_t *id, void (*func) (void *), void *data)
 {
     struct sigevent ev;
 
index 60f72c7f86aba490244256e6925be313f3356d7b..24f991e04db2796be491a3b7bc59565521c7a3a1 100644 (file)
@@ -521,15 +521,14 @@ static void CALLBACK vlc_timer_do (void *val, BOOLEAN timeout)
     if (TryEnterCriticalSection (&id->serializer))
     {
         id->overrun = InterlockedExchange (&id->counter, 0);
-        id->func (id, id->data);
+        id->func (id->data);
         LeaveCriticalSection (&id->serializer);
     }
     else /* Overrun */
         InterlockedIncrement (&id->counter);
 }
 
-int vlc_timer_create (vlc_timer_t *id, void (*func) (vlc_timer_t *, void *),
-                      void *data)
+int vlc_timer_create (vlc_timer_t *id, void (*func) (void *), void *data)
 {
     id->func = func;
     id->data = data;