blob: f1a5e3002cb006a5eb9c64a614b0226513f88d79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|