2015-04-21 14:10:29 +03:00
|
|
|
.\" $NetBSD: kthread.9,v 1.28 2015/04/21 11:10:29 pooka Exp $
|
2001-07-01 08:11:13 +04:00
|
|
|
.\"
|
2009-01-30 01:00:26 +03:00
|
|
|
.\" Copyright (c) 2000, 2007, 2008 The NetBSD Foundation, Inc.
|
2001-07-01 08:11:13 +04:00
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" This code is derived from software contributed to The NetBSD Foundation
|
2007-07-14 15:22:33 +04:00
|
|
|
.\" by Gregory McGarry, and by Andrew Doran.
|
2001-07-01 08:11:13 +04:00
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
2001-09-04 06:51:15 +04:00
|
|
|
.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
2001-07-01 08:11:13 +04:00
|
|
|
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
.\" POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
.\"
|
2015-04-21 14:10:29 +03:00
|
|
|
.Dd April 21, 2015
|
2001-07-01 08:11:13 +04:00
|
|
|
.Dt KTHREAD 9
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
2007-07-14 15:22:33 +04:00
|
|
|
.Nm kthread_create ,
|
2010-05-13 13:56:12 +04:00
|
|
|
.Nm kthread_exit ,
|
2010-05-12 19:54:47 +04:00
|
|
|
.Nm kthread_join
|
2001-07-01 08:11:13 +04:00
|
|
|
.Nd kernel threads
|
|
|
|
.Sh SYNOPSIS
|
2003-04-16 17:34:34 +04:00
|
|
|
.In sys/kthread.h
|
2007-07-14 15:22:33 +04:00
|
|
|
.Ft int
|
|
|
|
.Fn kthread_create "pri_t pri" "int flags" "struct cpu_info *ci" \
|
|
|
|
"void (*func)(void *)" "void *arg" "lwp_t **newlp" "const char *fmt" "..."
|
2001-07-01 08:11:13 +04:00
|
|
|
.Ft void
|
|
|
|
.Fn kthread_exit "int ecode"
|
2010-05-13 17:04:56 +04:00
|
|
|
.Ft int
|
|
|
|
.Fn kthread_join "lwp_t *l"
|
2001-07-01 08:11:13 +04:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
Kernel threads are light-weight processes which execute entirely
|
2002-10-14 17:43:14 +04:00
|
|
|
within the kernel.
|
2007-07-14 15:22:33 +04:00
|
|
|
.Pp
|
2002-10-14 17:43:14 +04:00
|
|
|
Any process can request the creation of a new kernel thread.
|
|
|
|
Kernel threads are not swapped out during memory congestion.
|
|
|
|
The VM space and limits are shared with proc0 (usually swapper).
|
2001-07-01 08:11:13 +04:00
|
|
|
.Sh FUNCTIONS
|
|
|
|
.Bl -tag -width compact
|
2007-07-14 15:22:33 +04:00
|
|
|
.It Fn kthread_create "pri" "flags" "ci" "func" "arg" "newlp" "fmt" "..."
|
|
|
|
Create a kernel thread.
|
|
|
|
The arguments are as follows.
|
|
|
|
.Bl -tag -width compact
|
|
|
|
.It Fa pri
|
|
|
|
Priority level for the thread.
|
|
|
|
If no priority level is desired specify
|
|
|
|
.Dv PRI_NONE ,
|
|
|
|
causing
|
|
|
|
.Fn kthread_create
|
|
|
|
to select the default priority level.
|
|
|
|
.It Fa flags
|
|
|
|
Flags that can be logically ORed together to alter the thread's behaviour.
|
2010-05-13 17:04:56 +04:00
|
|
|
.It Fa ci
|
|
|
|
If
|
|
|
|
.No non- Ns Dv NULL ,
|
|
|
|
the thread will be created bound to the CPU specified by
|
|
|
|
.Fa ci ,
|
|
|
|
meaning that it will only ever execute on that CPU.
|
|
|
|
By default, the threads are free to execute on any CPU in the system.
|
|
|
|
.It Fa func
|
|
|
|
A function to be called when the thread begins executing.
|
|
|
|
This function must not return.
|
|
|
|
If the thread runs to completion, it must call
|
|
|
|
.Fn kthread_exit
|
|
|
|
to properly terminate itself.
|
|
|
|
.It Fa arg
|
|
|
|
An argument to be passed to
|
|
|
|
.Fn func .
|
|
|
|
May be
|
|
|
|
.Dv NULL
|
|
|
|
if not required.
|
|
|
|
.It Fa newlp
|
2011-05-19 07:07:29 +04:00
|
|
|
A pointer to receive the new LWP structure for the kernel thread.
|
|
|
|
May be
|
|
|
|
.Dv NULL ,
|
|
|
|
unless
|
2011-08-07 18:03:15 +04:00
|
|
|
.Dv KTHREAD_MUSTJOIN
|
2010-05-13 17:04:56 +04:00
|
|
|
is specified in
|
2011-05-19 07:07:29 +04:00
|
|
|
.Fa flags .
|
2010-05-13 17:04:56 +04:00
|
|
|
.It Fa fmt
|
|
|
|
A string containing format information used to display the kernel
|
|
|
|
thread name.
|
|
|
|
Must not be
|
|
|
|
.Dv NULL .
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
The following
|
|
|
|
.Va flags
|
|
|
|
are defined.
|
2011-08-07 18:03:15 +04:00
|
|
|
.Bl -tag -width KTHREAD_MUSTJOIN
|
2010-05-13 13:56:12 +04:00
|
|
|
.It Dv KTHREAD_IDLE
|
|
|
|
Causes the thread to be created in the
|
2007-07-14 15:22:33 +04:00
|
|
|
.Dv LSIDL
|
|
|
|
(idle) state.
|
2009-01-30 01:33:31 +03:00
|
|
|
By default, the threads are created in the
|
2007-07-14 15:22:33 +04:00
|
|
|
.Dv LSRUN
|
|
|
|
(runnable) state, meaning they will begin execution shortly after creation.
|
2010-05-13 13:56:12 +04:00
|
|
|
.It Dv KTHREAD_MPSAFE
|
2007-07-14 15:22:33 +04:00
|
|
|
Specifies that the thread does its own locking and so is multiprocessor safe.
|
|
|
|
If not specified, the global kernel lock will be held whenever the thread is
|
|
|
|
running (unless explicitly dropped by the thread).
|
2010-05-13 13:56:12 +04:00
|
|
|
.It Dv KTHREAD_INTR
|
2007-07-14 15:22:33 +04:00
|
|
|
Specifies that the thread services device interrupts.
|
|
|
|
This flag is intended for kernel internal use and should not normally be
|
|
|
|
specified.
|
2010-05-13 13:56:12 +04:00
|
|
|
.It Dv KTHREAD_TS
|
2009-01-30 01:33:31 +03:00
|
|
|
Causes the kthread to be created in the
|
|
|
|
.Dv SCHED_OTHER
|
|
|
|
class (timeshared).
|
2011-05-19 12:55:01 +04:00
|
|
|
The thread's priority will be dynamically adjusted by the scheduler.
|
2009-01-30 01:00:26 +03:00
|
|
|
Increased activity by the kthread will cause its priority to fall;
|
|
|
|
decreased activity will cause its priority to rise.
|
2009-01-30 01:33:31 +03:00
|
|
|
By default, kthreads are created in the
|
|
|
|
.Dv SCHED_RR
|
|
|
|
class, with a fixed
|
2009-01-30 01:00:26 +03:00
|
|
|
priority specified by
|
|
|
|
.Ar pri .
|
2009-01-30 01:33:31 +03:00
|
|
|
Threads in the
|
|
|
|
.Dv SCHED_RR
|
|
|
|
class do not have their priority dynamically
|
2009-01-30 01:00:26 +03:00
|
|
|
adjusted by the scheduler.
|
2011-08-07 18:03:15 +04:00
|
|
|
.It Dv KTHREAD_MUSTJOIN
|
|
|
|
Indicates that created kthread must be joined.
|
2011-05-19 07:07:29 +04:00
|
|
|
In such case
|
|
|
|
.Fn kthread_exit
|
|
|
|
will wait until
|
2010-05-13 17:04:56 +04:00
|
|
|
.Fn kthread_join
|
2011-05-19 07:07:29 +04:00
|
|
|
will be called.
|
2007-07-14 15:22:33 +04:00
|
|
|
.El
|
|
|
|
.It Fn kthread_exit "ecode"
|
2001-07-01 08:11:13 +04:00
|
|
|
Exit from a kernel thread.
|
2007-07-14 15:22:33 +04:00
|
|
|
Must only be called by a kernel thread.
|
2010-05-12 19:54:47 +04:00
|
|
|
.It Fn kthread_join "l"
|
2011-05-19 07:07:29 +04:00
|
|
|
Suspend execution of calling thread until the target kthread terminates.
|
2010-05-13 17:04:56 +04:00
|
|
|
Conceptually the function can be compared to the user space
|
2011-05-19 07:07:29 +04:00
|
|
|
.Xr pthread_join 3 ,
|
2011-05-19 12:55:01 +04:00
|
|
|
however it must be called only once for kernel thread which was
|
|
|
|
created using the
|
2011-08-07 18:03:15 +04:00
|
|
|
.Dv KTHREAD_MUSTJOIN
|
2011-05-19 07:07:29 +04:00
|
|
|
flag and would wait on
|
|
|
|
.Fa kthread_exit .
|
2001-07-01 08:11:13 +04:00
|
|
|
.El
|
|
|
|
.Sh RETURN VALUES
|
|
|
|
Upon successful completion,
|
2007-11-22 02:11:06 +03:00
|
|
|
.Fn kthread_create
|
2002-10-14 17:43:14 +04:00
|
|
|
returns 0.
|
|
|
|
Otherwise, the following error values are returned:
|
2001-07-01 08:11:13 +04:00
|
|
|
.Bl -tag -width [EAGAIN]
|
|
|
|
.It Bq Er EAGAIN
|
|
|
|
The limit on the total number of system processes would be exceeded.
|
|
|
|
.It Bq Er EAGAIN
|
|
|
|
The limit
|
|
|
|
.Dv RLIMIT_NPROC
|
|
|
|
on the total number of processes under execution by this
|
|
|
|
user id would be exceeded.
|
|
|
|
.El
|
|
|
|
.Sh CODE REFERENCES
|
|
|
|
The kthread framework itself is implemented within the file
|
|
|
|
.Pa sys/kern/kern_kthread.c .
|
|
|
|
Data structures and function prototypes for the framework are located in
|
|
|
|
.Pa sys/sys/kthread.h .
|
|
|
|
.Sh SEE ALSO
|
2009-08-04 03:29:19 +04:00
|
|
|
.Xr condvar 9 ,
|
|
|
|
.Xr driver 9 ,
|
|
|
|
.Xr softint 9 ,
|
|
|
|
.Xr workqueue 9
|
2001-07-01 08:11:13 +04:00
|
|
|
.Sh HISTORY
|
|
|
|
The kthread framework appeared in
|
|
|
|
.Nx 1.4 .
|