blob: 82a16121d7eedacb7f644ffa70338f55ed82808d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _TIMER_H_
#define _TIMER_H_
#include "linux_list.h"
struct alarm_list {
struct list_head head;
struct timeval tv;
void *data;
void (*function)(struct alarm_list *a, void *data);
};
#endif
|