From 49f36252d60195112caada649d94cce3bb9d496e Mon Sep 17 00:00:00 2001 From: Mark Stapp Date: Wed, 6 Feb 2019 12:11:19 -0500 Subject: libs: remove deprecated workqueue api Remove deprecated api from workqueue module. Signed-off-by: Mark Stapp --- lib/workqueue.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib/workqueue.c') 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); -- cgit v1.2.3