No description
Find a file
Martin Mares e8f73195fa Added simple event scheduling system to avoid recursive calling
of various callbacks.

Events are just another resource type objects (thus automatically freed
and unlinked when the protocol using them shuts down). Each event can
be linked in at most one event list. For most purposes, just use the
global event list handled by the following functions:

	ev_schedule	Schedule event to be called at the next event
			scheduling point. If the event was already
			scheduled, it's just re-linked to the end of the list.
	ev_postpone	Postpone an already scheduled event, so that it
			won't get called. Postponed events can be scheduled
			again by ev_schedule().

You can also create custom event lists to build your own synchronization
primitives. Just use:

	ev_init_list	to initialize an event list
	ev_enqueue	to schedule event on specified event list
	ev_postpone	works as well for custom lists
	ev_run_list	to run all events on your custom list
	ev_run		to run a specific event and dequeue it
1999-02-11 21:18:26 +00:00
conf Implemented new configuration/reconfiguration interface and defined protocol 1999-02-05 21:37:34 +00:00
doc Added bird.conf to .cvsignore and created an example configuration file. 1999-01-15 17:18:41 +00:00
filter Few fixes in parsing of filters 1999-02-03 12:28:16 +00:00
lib Added simple event scheduling system to avoid recursive calling 1999-02-11 21:18:26 +00:00
misc Variance estimation fixed. 1998-12-19 21:53:28 +00:00
nest Implemented new configuration/reconfiguration interface and defined protocol 1999-02-05 21:37:34 +00:00
proto Propagate depend into all subdirectories; make rip compile after 1999-02-08 22:50:32 +00:00
sysdep Added simple event scheduling system to avoid recursive calling 1999-02-11 21:18:26 +00:00
tools Filter all `Modules' files through C preprocessor, so that they can 1999-01-23 21:08:36 +00:00
.cvsignore Added bird.conf to .cvsignore and created an example configuration file. 1999-01-15 17:18:41 +00:00
aclocal.m4 First step of "autoconfization". Created a configure script which 1999-01-09 15:02:11 +00:00
bird.conf filters_init() renamed to filters_postconfig(). 1999-01-15 18:13:55 +00:00
configure.in Filter all `Modules' files through C preprocessor, so that they can 1999-01-23 21:08:36 +00:00
Makefile Propagate depend into all subdirectories; make rip compile after 1999-02-08 22:50:32 +00:00
TODO Added simple event scheduling system to avoid recursive calling 1999-02-11 21:18:26 +00:00