1 /* This file is part of the program psim.
3 Copyright (C) 1994-1995, Andrew Cagney <cagney@highland.com.au>
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.
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.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 /* typedef struct _event_queue event_queue; */
26 /* typedef struct _event_entry_tag *event_entry_tag; */
28 typedef void event_handler(void *data);
31 (event_queue *) event_queue_create
35 (void) event_queue_init
39 /* (de)Schedule things to happen in the future. */
42 (event_entry_tag) event_queue_schedule
45 event_handler *handler,
49 (event_entry_tag) event_queue_schedule_after_signal
52 event_handler *handler,
56 (void) event_queue_deschedule
58 event_entry_tag event_to_remove);
61 /* progress time. In to parts so that if something is pending, the
62 caller has a chance to save any cached state */
65 (int) event_queue_tick
69 (void) event_queue_process
70 (event_queue *events);
73 /* local concept of time */
76 (signed64) event_queue_time
79 #endif /* _EVENTS_H_ */