aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/taskqueue.h
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2016-03-01 17:47:32 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2016-03-01 17:47:32 +0000
commitcbc4d2db750b685904e055b79add5d516bd07e61 (patch)
treebc4ba59ad502bd4930be6d5bc1668a5a2c0da3f5 /sys/sys/taskqueue.h
parentac8f9de31a0e054f604f46b1692ba4e9c10bdda5 (diff)
downloadsrc-cbc4d2db750b685904e055b79add5d516bd07e61.tar.gz
src-cbc4d2db750b685904e055b79add5d516bd07e61.zip
Remove taskqueue_enqueue_fast().
taskqueue_enqueue() was changed to support both fast and non-fast taskqueues 10 years ago in r154167. It has been a compat shim ever since. It's time for the compat shim to go. Submitted by: Howard Su <howard0su@gmail.com> Reviewed by: sephe Differential Revision: https://reviews.freebsd.org/D5131
Notes
Notes: svn path=/head/; revision=296272
Diffstat (limited to 'sys/sys/taskqueue.h')
-rw-r--r--sys/sys/taskqueue.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/sys/taskqueue.h b/sys/sys/taskqueue.h
index 9b72e46b5e6f..cfba47226fe3 100644
--- a/sys/sys/taskqueue.h
+++ b/sys/sys/taskqueue.h
@@ -198,7 +198,6 @@ TASKQUEUE_DECLARE(thread);
* from a fast interrupt handler context.
*/
TASKQUEUE_DECLARE(fast);
-int taskqueue_enqueue_fast(struct taskqueue *queue, struct task *task);
struct taskqueue *taskqueue_create_fast(const char *name, int mflags,
taskqueue_enqueue_fn enqueue,
void *context);