about summary refs log tree commit diff
path: root/evloop/evloop.h
diff options
context:
space:
mode:
Diffstat (limited to 'evloop/evloop.h')
-rw-r--r--evloop/evloop.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/evloop/evloop.h b/evloop/evloop.h
index 97f7665..55589aa 100644
--- a/evloop/evloop.h
+++ b/evloop/evloop.h
@@ -47,11 +47,11 @@ int fdev_del(struct fdev *ev);
 int fdev_enable(struct fdev *ev, uint16_t flags);
 int fdev_disable(struct fdev *ev, uint16_t flags);
 
-void timer_init(struct timeout *, evloop_cb_t, void *);
-int timer_add(struct timeout *, struct timespec *);
-void timer_del(struct timeout *);
+void evtimer_init(struct timeout *, evloop_cb_t, void *);
+int evtimer_add(struct timeout *, struct timespec *);
+void evtimer_del(struct timeout *);
 
-void timers_run(void);
-struct timespec timer_delay(void);
+void evtimers_run(void);
+struct timespec evtimer_delay(void);
 
 #endif