diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-08-09 15:13:53 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-08-09 15:13:53 +0000 |
commit | bab4a550c34c86760becf2b87f34f0dbc1b132c8 (patch) | |
tree | e0a2708642087d782998f9faab85093bfbf926e0 /pfinet | |
parent | 2e3591e5d88e321aa26063dfa0d8f736240fb39f (diff) |
Formerly timer.h.~4~
Diffstat (limited to 'pfinet')
-rw-r--r-- | pfinet/linux/timer.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/pfinet/linux/timer.h b/pfinet/linux/timer.h index 036425b7..bbab7937 100644 --- a/pfinet/linux/timer.h +++ b/pfinet/linux/timer.h @@ -1,11 +1,14 @@ #ifndef _HACK_TIMER_H_ #define _HACK_TIMER_H_ +#include <cthreads.h> + struct timer_list { - cthread_t thread; - u_long expires; - u_long data; + thread_t thread; + int foobiebletch; + unsigned long expires; + unsigned long data; void (*function)(unsigned long); }; |