aboutsummaryrefslogtreecommitdiffstats
path: root/timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'timer.h')
-rw-r--r--timer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/timer.h b/timer.h
index 9135a5e..26f8674 100644
--- a/timer.h
+++ b/timer.h
@@ -29,7 +29,7 @@
#define _TIMER_H_
int timer_add(void (*callback) (void *data), void *data, const int interval, const int one_shot);
-//exactly the same as above but does not trigger now
+/* exactly the same as timer_add() but does not trigger immediately */
int timer_add_late(void (*callback) (void *data), void *data, const int interval, const int one_shot);
int timer_remove(void (*callback) (void *data), void *data);
int timer_process(struct timespec *delay);