summaryrefslogtreecommitdiffstats
path: root/include/alarm.h
blob: 93e64827c2dc7bd3e1ef1a79254dfe0e6febfda5 (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;
	unsigned long		expires;
	void			*data;
	void			(*function)(struct alarm_list *a, void *data);
};

#endif