diff options
author | Denis Ovsienko <linux@pilot.org.ua> | 2008-06-02 14:03:22 +0200 |
---|---|---|
committer | Denis Ovsienko <linux@pilot.org.ua> | 2008-06-02 14:03:22 +0200 |
commit | e96f92034dad1a70c92ad4ad863a5259c122cecb (patch) | |
tree | c3b9bebef0fe2059182b31b43243289b5c7248e3 /lib/workqueue.h | |
parent | [bgpd] bug #419: partial aspath-limit incorrectly causes session reset (diff) | |
download | frr-e96f92034dad1a70c92ad4ad863a5259c122cecb.tar.xz frr-e96f92034dad1a70c92ad4ad863a5259c122cecb.zip |
+ initial edition of meta-queue for RIB updates processing (bug #431)
Diffstat (limited to 'lib/workqueue.h')
-rw-r--r-- | lib/workqueue.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/workqueue.h b/lib/workqueue.h index 3150c32e7..f59499a0a 100644 --- a/lib/workqueue.h +++ b/lib/workqueue.h @@ -48,7 +48,6 @@ struct work_queue_item }; #define WQ_UNPLUGGED (1 << 0) /* available for draining */ -#define WQ_AIM_HEAD (1 << 1) /* add new items before list head, not after tail */ struct work_queue { @@ -119,8 +118,6 @@ extern void work_queue_add (struct work_queue *, void *); extern void work_queue_plug (struct work_queue *wq); /* unplug the queue, allow it to be drained again */ extern void work_queue_unplug (struct work_queue *wq); -/* control the value for WQ_AIM_HEAD flag */ -extern void work_queue_aim_head (struct work_queue *wq, const unsigned); /* Helpers, exported for thread.c and command.c */ extern int work_queue_run (struct thread *); |