1 .\" $NetBSD: ctxsw.9,v 1.2 1996/12/02 00:11:31 tls Exp $
3 .\" Copyright (c) 1996 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
6 .\" This code is derived from software contributed to The NetBSD Foundation
7 .\" by Paul Kranenburg.
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\" notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\" notice, this list of conditions and the following disclaimer in the
16 .\" documentation and/or other materials provided with the distribution.
17 .\" 3. All advertising materials mentioning features or use of this software
18 .\" must display the following acknowledgement:
19 .\" This product includes software developed by the NetBSD
20 .\" Foundation, Inc. and its contributors.
21 .\" 4. Neither the name of The NetBSD Foundation nor the names of its
22 .\" contributors may be used to endorse or promote products derived
23 .\" from this software without specific prior written permission.
25 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
26 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 .\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
29 .\" LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 .\" POSSIBILITY OF SUCH DAMAGE.
46 .Nd switch to another thread context
59 function implements the machine independent prelude to a thread context
61 It is called from only a few distinguished places in the kernel
62 code as a result of the principle of non-preemptable kernel mode execution.
63 The various major uses of
65 can be enumerated as follows:
66 .Bl -enum -offset indent
68 From within a function such as
73 when the current thread
74 voluntarily relinquishes the CPU to wait for some resource or lock to become
78 (e.g.\& a system call, device interrupt)
79 when the kernel prepares a return to user-mode execution.
81 typically handled by machine dependent trap-handling code after detection
82 of a change in the signal disposition of the current process, or when a
83 higher priority thread might be available to run.
85 communicated by the machine independent scheduling routines by calling
89 In the signal handling code
92 if a signal is delivered that causes a process to stop.
96 and control of the processor can be passed to the next runnable thread.
99 .Xr thread_suspend_check 9
100 where a thread needs to stop execution due to the suspension state of
101 the process as a whole.
105 records the amount of time the current thread has been running in the
106 process structures and checks this value against the CPU time limits
107 allocated to the process
110 Exceeding the soft limit results in a
112 signal to be posted to the process, while exceeding the hard limit will
116 If the thread is still in the
120 will put it back onto the run queue, assuming that
121 it will want to run again soon.
122 If it is in one of the other
123 states and KSE threading is enabled, the associated
125 will be made available to any higher priority threads from the same
126 group, to allow them to be scheduled next.
128 After these administrative tasks are done,
130 hands over control to the machine dependent routine
132 which will perform the actual thread context switch.
135 first saves the context of the current thread.
138 to determine which thread to run next.
139 Finally, it reads in the saved context of the new thread and starts to
140 execute the new thread.
145 except that it does not save the context of the old thread.
146 This function is useful when the kernel does not have an old thread
147 context to save, such as when CPUs other than the boot CPU perform their
148 first task switch, or when the kernel does not care about the state of the
149 old thread, such as in
151 when the kernel terminates the current thread and switches into a new
156 all of these functions must be called with the