diff options
| author | David Lamparter <equinox@diac24.net> | 2019-02-07 18:52:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-07 18:52:27 +0100 |
| commit | e7f0060c12c4f37796df100fd205dbbaa7dfcf1a (patch) | |
| tree | 5a982a6382e2d8b88dc786d256e0ab04502b3678 /lib/workqueue.c | |
| parent | b736a7be6f97a09579f93b07901c588aa8cb8279 (diff) | |
| parent | 49f36252d60195112caada649d94cce3bb9d496e (diff) | |
Merge pull request #3744 from mjstapp/wq_deprecated_api
libs: remove deprecated workqueue api
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); |
