blob: 4d98aef4270158aecae7bcdabdaf2013a9811ecc [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#include <stdio.h>
22
23#include <openbsc/timer.h>
24#include <openbsc/select.h>
25
26static void timer_fired(unsigned long data);
27
28static struct timer_list timer_one = {
29 .cb = timer_fired,
30 .data = (void*)1,
31};
32
33static struct timer_list timer_two = {
34 .cb = timer_fired,
35 .data = (void*)2,
36};
37
38static void timer_fired(unsigned long data)
39{
40 printf("Fired timer: %lu\n", data);
41
42 if (data == 1) {
43 schedule_timer(&timer_one, 3, 0);
44 del_timer(&timer_two);
45 } else if (data == 2) {
46 printf("Should not be fired... bug in del_timer\n");
47 } else {
48 printf("wtf... wrong data\n");
49 }
50}
51
52int main(int argc, char** argv)
53{
54 printf("Starting... timer\n");
55
56 schedule_timer(&timer_one, 3, 0);
57 schedule_timer(&timer_two, 5, 0);
58
59 while (1) {
60 bsc_select_main();
61 }
62}