diff options
author | Paul Jakma <paul@quagga.net> | 2011-04-08 13:44:43 +0200 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2012-01-06 17:18:18 +0100 |
commit | f63f06da2e7be6b17c72dd6110aae179f42f3700 (patch) | |
tree | a36b625a9ea06d0720a240276ed1b8af33193ed7 /lib/workqueue.c | |
parent | doc: update BGP RFC references (diff) | |
download | frr-f63f06da2e7be6b17c72dd6110aae179f42f3700.tar.xz frr-f63f06da2e7be6b17c72dd6110aae179f42f3700.zip |
general: remove inline qualifiers and move in-header functions to objects
* (general) Move functions in headers into files, to be compiled into
shared object files. Remove inline qualifier from functions. Let the
compiler do the work.
Diffstat (limited to 'lib/workqueue.c')
-rw-r--r-- | lib/workqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/workqueue.c b/lib/workqueue.c index 52b5f41c5..61643bf81 100644 --- a/lib/workqueue.c +++ b/lib/workqueue.c @@ -103,7 +103,7 @@ work_queue_free (struct work_queue *wq) return; } -static inline int +static int work_queue_schedule (struct work_queue *wq, unsigned int delay) { /* if appropriate, schedule work queue thread */ |