3 Copyright (C) 2002 Guus Sliepen <guus@sliepen.eu.org>,
4 2002 Ivo Timmermans <ivo@o2w.nl>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 $Id: event.c,v 1.1.4.3 2002/06/21 10:11:12 guus Exp $
36 avl_tree_t *event_tree;
41 int event_compare(event_t *a, event_t *b)
50 void init_events(void)
53 event_tree = avl_alloc_tree((avl_compare_t)event_compare, NULL);
57 void exit_events(void)
60 avl_delete_tree(event_tree);
64 event_t *new_event(void)
68 event = (event_t *)xmalloc_and_zero(sizeof(*event));
73 void free_event(event_t *event)
80 void event_add(event_t *event)
84 avl_insert(event_tree, event);
88 void event_del(event_t *event)
91 avl_delete(event_tree, event);
95 event_t *get_expired_event(void)
101 event = (event_t *)event_tree->head->data;
102 if(event->time < now)
104 avl_delete(event_tree, event);