4 Created: April 1995 by Philip Homburg <philip@f-mnx.phicoh.com>
6 Implementation of an event queue.
8 Copyright 1995 Philip Homburg
18 static event_t
*ev_tail
;
27 void ev_enqueue(ev
, func
, ev_arg
)
32 assert(ev
->ev_func
== 0);
51 ev_head
= curr
->ev_next
;
56 func(curr
, curr
->ev_arg
);
63 return ev
->ev_func
!= 0;
68 * $PchId: event.c,v 1.6 2004/08/03 16:23:32 philip Exp $