summaryrefslogtreecommitdiff
path: root/pfinet
diff options
context:
space:
mode:
Diffstat (limited to 'pfinet')
-rw-r--r--pfinet/linux/timer.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/pfinet/linux/timer.h b/pfinet/linux/timer.h
index e69de29b..f1a5e300 100644
--- a/pfinet/linux/timer.h
+++ b/pfinet/linux/timer.h
@@ -0,0 +1,16 @@
+#ifndef _HACK_TIMER_H_
+#define _HACK_TIMER_H_
+
+struct timer_list
+{
+ struct timer_list *next, *prev;
+ u_long expires;
+ u_long data;
+ void (*function)(unsigned long);
+};
+
+void add_timer (struct timer_list *);
+int del_timer (struct timer_list *);
+void init_timer (struct timer_list *);
+
+#endif