diff options
Diffstat (limited to 'libglusterfs/src/timer.h')
| -rw-r--r-- | libglusterfs/src/timer.h | 10 | 
1 files changed, 2 insertions, 8 deletions
diff --git a/libglusterfs/src/timer.h b/libglusterfs/src/timer.h index fff902814ed..0224b0897f9 100644 --- a/libglusterfs/src/timer.h +++ b/libglusterfs/src/timer.h @@ -20,7 +20,7 @@ typedef void (*gf_timer_cbk_t) (void *);  struct _gf_timer {          struct _gf_timer *next, *prev; -        struct timespec    at; +        struct timespec   at;          gf_timer_cbk_t    callbk;          void             *data;          xlator_t         *xl; @@ -31,7 +31,7 @@ struct _gf_timer_registry {          pthread_t        th;          char             fin;          struct _gf_timer active; -        pthread_mutex_t  lock; +        gf_lock_t        lock;  };  typedef struct _gf_timer gf_timer_t; @@ -47,12 +47,6 @@ int32_t  gf_timer_call_cancel (glusterfs_ctx_t *ctx,                        gf_timer_t *event); -void * -gf_timer_proc (void *data); - -gf_timer_registry_t * -gf_timer_registry_init (glusterfs_ctx_t *ctx); -  void  gf_timer_registry_destroy (glusterfs_ctx_t *ctx);  #endif /* _TIMER_H */  | 
