diff options
-rw-r--r-- | lib/ChangeLog | 5 | ||||
-rw-r--r-- | lib/workqueue.h | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog index b5a5e486..fe4086d9 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,8 @@ +2006-03-25 Paul Jakma <paul.jakma@sun.com> + + * workqueue.h: (struct work_queue) Remove status field and + state flag, no longer used. + 2006-03-19 Paul Jakma <paul.jakma@sun.com> * memtypes.c: Add MTYPE_BGP_SYNCHRONISE. diff --git a/lib/workqueue.h b/lib/workqueue.h index c06f481f..7e0e78ab 100644 --- a/lib/workqueue.h +++ b/lib/workqueue.h @@ -102,9 +102,6 @@ struct work_queue /* private state */ enum work_queue_flags flags; /* user set flag */ - char status; /* internal status */ -#define WQ_STATE_FLOODED (1 << 0) - }; /* User API */ |