Clean out all mentions of struct proc* for it was removed from

taskqueue(9) API more then two years ago.

  Approved by:	cognet (mentor)
This commit is contained in:
Oleksandr Tymoshenko 2008-05-22 21:41:19 +00:00
parent 990662f170
commit 8f668ffa98
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=179214

View File

@ -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