diff options
author | Martin Mares <mj@ucw.cz> | 2000-06-07 15:25:53 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-06-07 15:25:53 +0200 |
commit | 58f7d004fddd2cccdb019be59b6cc7a8abe50510 (patch) | |
tree | 97d14f24e68ec6d32d114af62dab293a9abeb10c /lib/event.c | |
parent | 38203d789a872077ec174a63a448568725e4715f (diff) | |
download | bird-58f7d004fddd2cccdb019be59b6cc7a8abe50510.tar bird-58f7d004fddd2cccdb019be59b6cc7a8abe50510.zip |
Fixes to the progdoc.
Diffstat (limited to 'lib/event.c')
-rw-r--r-- | lib/event.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/event.c b/lib/event.c index 788aab4..9b5870d 100644 --- a/lib/event.c +++ b/lib/event.c @@ -13,12 +13,10 @@ * Since BIRD is single-threaded, it requires long lasting tasks to be split to smaller * parts, so that no module can monopolize the CPU. To split such a task, just create * an &event resource, point it to the function you want to have called and call ev_schedule() - * to ask the core to run the event when nothing more important will require attention. + * to ask the core to run the event when nothing more important requires attention. * * You can also define your own event lists (the &event_list structure), enqueue your * events in them and explicitly ask to run them. - * - * The actual implementation is system dependent. */ #include "nest/bird.h" |