diff options
| author | Mark Stapp <mjs@voltanet.io> | 2019-02-06 12:11:19 -0500 |
|---|---|---|
| committer | Mark Stapp <mjs@voltanet.io> | 2019-02-06 14:13:21 -0500 |
| commit | 49f36252d60195112caada649d94cce3bb9d496e (patch) | |
| tree | be2adc407c5e57da02db65b1bbcf8c08418f5800 /lib/workqueue.c | |
| parent | 4634d02cfd86685156b29c8084a979749efe15e2 (diff) | |
libs: remove deprecated workqueue api
Remove deprecated api from workqueue module.
Signed-off-by: Mark Stapp <mjs@voltanet.io>
Diffstat (limited to 'lib/workqueue.c')
| -rw-r--r-- | lib/workqueue.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/workqueue.c b/lib/workqueue.c index 24ef24c774..93bbc52e3b 100644 --- a/lib/workqueue.c +++ b/lib/workqueue.c @@ -99,7 +99,10 @@ struct work_queue *work_queue_new(struct thread_master *m, return new; } -void work_queue_free_original(struct work_queue *wq) +/* + * Internal helper api; used to be public. + */ +static void work_queue_free_original(struct work_queue *wq) { if (wq->thread != NULL) thread_cancel(wq->thread); |
