blob: cc8dec8033d88101fb3b3b51306192db7f890f38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#ifndef _HACK_TIMER_H_
#define _HACK_TIMER_H_
#include <cthreads.h>
enum tstate
{
TIMER_INACTIVE,
TIMER_STARTING,
TIMER_STARTED,
TIMER_EXPIRED,
TIMER_FUNCTION_RUNNING,
};
struct timer_list
{
struct timer_list *next, **prev; /* things like to test "T->prev != NULL" */
unsigned long expires;
unsigned long data;
void (*function)(unsigned long);
};
void add_timer (struct timer_list *);
int del_timer (struct timer_list *);
void mod_timer (struct timer_list *, unsigned long);
void init_timer (struct timer_list *);
#define time_after(a,b) ((long)(b) - (long)(a) < 0)
#define time_before(a,b) time_after(b,a)
#define time_after_eq(a,b) ((long)(a) - (long)(b) >= 0)
#define time_before_eq(a,b) time_after_eq(b,a)
#endif
|