diff options
author | Paul Jakma <paul@quagga.net> | 2011-04-08 12:44:43 +0100 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2012-01-06 16:18:18 +0000 |
commit | f63f06da2e7be6b17c72dd6110aae179f42f3700 (patch) | |
tree | a36b625a9ea06d0720a240276ed1b8af33193ed7 /lib/workqueue.c | |
parent | 651e70d7f419ee7af75113f80e688c0100e9cff5 (diff) | |
download | quagga-f63f06da2e7be6b17c72dd6110aae179f42f3700.tar.bz2 quagga-f63f06da2e7be6b17c72dd6110aae179f42f3700.tar.xz |
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 52b5f41c..61643bf8 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 */ |