2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
26 * Mach Operating System
27 * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University
28 * All Rights Reserved.
30 * Permission to use, copy, modify and distribute this software and its
31 * documentation is hereby granted, provided that both the copyright
32 * notice and this permission notice appear in all copies of the
33 * software, derivative works or modified versions, and any portions
34 * thereof, and that both notices appear in supporting documentation.
36 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
37 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
38 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
40 * Carnegie Mellon requests users of this software to return to
42 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
43 * School of Computer Science
44 * Carnegie Mellon University
45 * Pittsburgh PA 15213-3890
47 * any improvements or extensions that they make and grant Carnegie Mellon
48 * the rights to redistribute these changes.
53 #include <kern/thread.h>
54 #include <kern/lock.h>
55 #include <vm/vm_map.h>
56 #include <vm/vm_kern.h>
57 #include <mach/vm_param.h>
58 #include <kern/sched_prim.h>
59 #include <kern/processor.h>
60 #include <kern/thread_swap.h>
61 #include <kern/spl.h> /* for splsched */
62 #include <kern/misc_protos.h>
63 #include <kern/counters.h>
64 #include <mach/policy.h>
66 queue_head_t swapin_queue
;
67 decl_simple_lock_data(,swapin_lock
)
69 mach_counter_t c_swapin_thread_block
;
71 void swapin_thread(void);
74 * swapin_init: [exported]
76 * Initialize the swapper module.
81 queue_init(&swapin_queue
);
82 simple_lock_init(&swapin_lock
, ETAP_THREAD_SWAPPER
);
83 kernel_thread_with_priority(swapin_thread
, MINPRI_KERNEL
);
87 * thread_swapin: [exported]
89 * Place the specified thread in the list of threads to swapin.
90 * Called with thread locked, returned unlocked.
95 register thread_t thread
)
97 switch (thread
->state
& TH_STACK_STATE
) {
99 case TH_STACK_HANDOFF
:
103 thread
->state
= (thread
->state
& ~TH_STACK_STATE
) | TH_STACK_ALLOC
;
104 thread_unlock(thread
);
105 simple_lock(&swapin_lock
);
106 enqueue_tail(&swapin_queue
, (queue_entry_t
) thread
);
107 simple_unlock(&swapin_lock
);
108 thread_wakeup((event_t
)&swapin_queue
);
115 thread_unlock(thread
);
120 * Already swapped in.
122 panic("thread_swapin");
129 * Swapin the specified thread, if it should be runnable, then put
134 register thread_t thread
)
140 * Allocate the kernel stack.
142 stack
= stack_alloc(thread
, thread_continue
);
146 * Place on run queue.
150 thread
->state
&= ~(TH_STACK_HANDOFF
| TH_STACK_ALLOC
);
151 if (thread
->state
& TH_RUN
)
152 thread_setrun(thread
, SCHED_PREEMPT
| SCHED_TAILQ
);
153 thread_unlock(thread
);
158 * swapin_thread: [exported]
160 * This procedure executes as a kernel thread. Threads that need to
161 * be swapped in are swapped in by this thread.
164 swapin_thread_continue(void)
166 register thread_t thread
;
169 simple_lock(&swapin_lock
);
171 while ((thread
= (thread_t
)dequeue_head(&swapin_queue
)) != THREAD_NULL
) {
172 simple_unlock(&swapin_lock
);
175 thread_doswapin(thread
);
178 simple_lock(&swapin_lock
);
181 assert_wait((event_t
)&swapin_queue
, THREAD_UNINT
);
182 simple_unlock(&swapin_lock
);
185 counter(c_swapin_thread_block
++);
186 thread_block(swapin_thread_continue
);
193 swapin_thread_continue();