aboutsummaryrefslogtreecommitdiff
path: root/share/man/man9/taskqueue.9
diff options
context:
space:
mode:
authorOleksandr Tymoshenko <gonzo@FreeBSD.org>2008-05-22 21:41:19 +0000
committerOleksandr Tymoshenko <gonzo@FreeBSD.org>2008-05-22 21:41:19 +0000
commit8f668ffa9876c36c530e5bcd7e1c205c56cc5093 (patch)
treea570e02fb96442d2e5ca56551d75f28769e224f6 /share/man/man9/taskqueue.9
parent990662f170790cda8e0c8ad9f308c381eeae05c0 (diff)
downloadsrc-8f668ffa9876c36c530e5bcd7e1c205c56cc5093.tar.gz
src-8f668ffa9876c36c530e5bcd7e1c205c56cc5093.zip
Clean out all mentions of struct proc* for it was removed from
taskqueue(9) API more then two years ago. Approved by: cognet (mentor)
Notes
Notes: svn path=/head/; revision=179214
Diffstat (limited to 'share/man/man9/taskqueue.9')
-rw-r--r--share/man/man9/taskqueue.95
1 files changed, 1 insertions, 4 deletions
diff --git a/share/man/man9/taskqueue.9 b/share/man/man9/taskqueue.9
index 2a63a4218f99..82c786576c43 100644
--- a/share/man/man9/taskqueue.9
+++ b/share/man/man9/taskqueue.9
@@ -54,7 +54,7 @@ struct task {
};
.Ed
.Ft struct taskqueue *
-.Fn taskqueue_create "const char *name" "int mflags" "taskqueue_enqueue_fn enqueue" "void *context" "struct proc **"
+.Fn taskqueue_create "const char *name" "int mflags" "taskqueue_enqueue_fn enqueue" "void *context"
.Ft void
.Fn taskqueue_free "struct taskqueue *queue"
.Ft struct taskqueue *
@@ -217,9 +217,6 @@ The
.Fn TASKQUEUE_DEFINE_THREAD
macro defines a new taskqueue with its own kernel thread to serve tasks.
The variable
-.Vt struct proc *taskqueue_name_proc
-is defined which contains the kernel thread serving the tasks.
-The variable
.Vt struct taskqueue *taskqueue_name
is used to enqueue tasks onto the queue.
.Ss Predefined Task Queues