blob: e8dc91a84374d08e0877a8bae202eb0515310a18 [file] [log] [blame]
Holger Freyther5f755982008-12-27 09:42:59 +00001/*
2 * (C) 2008 by Holger Hans Peter Freyther <zecke@selfish.org>
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21#ifndef TIMER_H
22#define TIMER_H
23
24#include <sys/time.h>
25
26#include "linuxlist.h"
27
28/**
29 * Timer management:
30 * - Create a struct timer_list
31 * - Fill out timeout and use add_timer or
32 * use schedule_timer to schedule a timer in
33 * x seconds and microseconds from now...
34 * - Use del_timer to remove the timer
35 *
36 * Internally:
37 * - We hook into select.c to give a timeval of the
38 * nearest timer. On already passed timers we give
39 * it a 0 to immediately fire after the select
40 * - update_timers will call the callbacks and remove
41 * the timers.
42 *
43 */
44struct timer_list {
45 struct llist_head entry;
46 struct timeval timeout;
47 int active : 1;
48 int handled : 1;
49
50 void (*cb)(void*);
51 void *data;
52};
53
54/**
55 * timer management
56 */
57void add_timer(struct timer_list *timer);
58void schedule_timer(struct timer_list *timer, int seconds, int microseconds);
59void del_timer(struct timer_list *timer);
60int timer_pending(struct timer_list *timer);
61
62
63/**
64 * internal timer list management
65 */
66struct timeval *nearest_timer();
67void prepare_timers();
68void update_timers();
69
70#endif