]>
git.saurik.com Git - apple/xnu.git/blob - bsd/kern/kern_synch.c
2 * Copyright (c) 2000-2006 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * Mach Operating System
30 * Copyright (c) 1987 Carnegie-Mellon University
31 * All rights reserved. The CMU software License Agreement specifies
32 * the terms and conditions for use and redistribution.
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/proc_internal.h>
39 #include <sys/file_internal.h>
40 #include <sys/vnode.h>
41 #include <sys/kernel.h>
43 #include <machine/spl.h>
45 #include <kern/queue.h>
47 #include <kern/thread.h>
48 #include <kern/sched_prim.h>
51 #include <kern/cpu_number.h>
52 #include <vm/vm_kern.h>
54 #include <kern/task.h>
55 #include <mach/time_value.h>
56 #include <kern/lock.h>
58 #include <sys/systm.h> /* for unix_syscall_return() */
59 #include <libkern/OSAtomic.h>
61 extern boolean_t
thread_should_abort(thread_t
); /* XXX */
62 extern void compute_averunnable(void *); /* XXX */
67 _sleep_continue( __unused
void *parameter
, wait_result_t wresult
)
69 struct proc
*p
= current_proc();
70 thread_t self
= current_thread();
76 ut
= get_bsdthread_info(self
);
77 catch = ut
->uu_pri
& PCATCH
;
78 dropmutex
= ut
->uu_pri
& PDROP
;
81 case THREAD_TIMED_OUT
:
86 * Posix implies any signal should be delivered
87 * first, regardless of whether awakened due
92 /* else fall through */
93 case THREAD_INTERRUPTED
:
95 if (thread_should_abort(self
)) {
97 } else if (SHOULDissignal(p
,ut
)) {
98 if ((sig
= CURSIG(p
)) != 0) {
99 if (p
->p_sigacts
->ps_sigintr
& sigmask(sig
))
104 if (thread_should_abort(self
)) {
107 } else if( (ut
->uu_flag
& ( UT_CANCELDISABLE
| UT_CANCEL
| UT_CANCELED
)) == UT_CANCEL
) {
108 /* due to thread cancel */
116 if (error
== EINTR
|| error
== ERESTART
)
117 act_set_astbsd(self
);
119 if (ut
->uu_mtx
&& !dropmutex
)
120 lck_mtx_lock(ut
->uu_mtx
);
125 unix_syscall_return((*ut
->uu_continuation
)(error
));
129 * Give up the processor till a wakeup occurs
130 * on chan, at which time the process
131 * enters the scheduling queue at priority pri.
132 * The most important effect of pri is that when
133 * pri<=PZERO a signal cannot disturb the sleep;
134 * if pri>PZERO signals will be processed.
135 * If pri&PCATCH is set, signals will cause sleep
136 * to return 1, rather than longjmp.
137 * Callers of this routine must be prepared for
138 * premature return, and check that the reason for
139 * sleeping has gone away.
141 * if msleep was the entry point, than we have a mutex to deal with
143 * The mutex is unlocked before the caller is blocked, and
144 * relocked before msleep returns unless the priority includes the PDROP
145 * flag... if PDROP is specified, _sleep returns with the mutex unlocked
146 * regardless of whether it actually blocked or not.
155 int (*continuation
)(int),
159 thread_t self
= current_thread();
161 int sig
, catch = pri
& PCATCH
;
162 int dropmutex
= pri
& PDROP
;
166 ut
= get_bsdthread_info(self
);
169 p
->p_priority
= pri
& PRIMASK
;
170 /* It can still block in proc_exit() after the teardown. */
171 if (p
->p_stats
!= NULL
)
172 OSIncrementAtomic(&p
->p_stats
->p_ru
.ru_nvcsw
);
174 /* set wait message & channel */
176 ut
->uu_wmesg
= wmsg
? wmsg
: "unknown";
178 if (mtx
!= NULL
&& chan
!= NULL
&& (thread_continue_t
)continuation
== THREAD_CONTINUE_NULL
) {
181 wait_result
= lck_mtx_sleep_deadline(mtx
, (dropmutex
) ? LCK_SLEEP_UNLOCK
: 0,
182 chan
, (catch) ? THREAD_ABORTSAFE
: THREAD_UNINT
, abstime
);
184 wait_result
= lck_mtx_sleep(mtx
, (dropmutex
) ? LCK_SLEEP_UNLOCK
: 0,
185 chan
, (catch) ? THREAD_ABORTSAFE
: THREAD_UNINT
);
189 assert_wait_deadline(chan
, (catch) ? THREAD_ABORTSAFE
: THREAD_UNINT
, abstime
);
193 if (SHOULDissignal(p
,ut
)) {
194 if ((sig
= CURSIG(p
)) != 0) {
195 if (clear_wait(self
, THREAD_INTERRUPTED
) == KERN_FAILURE
)
197 if (p
->p_sigacts
->ps_sigintr
& sigmask(sig
))
201 if (mtx
&& !dropmutex
)
206 if (thread_should_abort(self
)) {
207 if (clear_wait(self
, THREAD_INTERRUPTED
) == KERN_FAILURE
)
211 if (mtx
&& !dropmutex
)
219 if ((thread_continue_t
)continuation
!= THREAD_CONTINUE_NULL
) {
220 ut
->uu_continuation
= continuation
;
222 ut
->uu_timo
= abstime
? 1: 0;
224 (void) thread_block(_sleep_continue
);
228 wait_result
= thread_block(THREAD_CONTINUE_NULL
);
230 if (mtx
&& !dropmutex
)
234 switch (wait_result
) {
235 case THREAD_TIMED_OUT
:
238 case THREAD_AWAKENED
:
240 * Posix implies any signal should be delivered
241 * first, regardless of whether awakened due
242 * to receiving event.
246 /* else fall through */
247 case THREAD_INTERRUPTED
:
249 if (thread_should_abort(self
)) {
251 } else if (SHOULDissignal(p
, ut
)) {
252 if ((sig
= CURSIG(p
)) != 0) {
253 if (p
->p_sigacts
->ps_sigintr
& sigmask(sig
))
258 if (thread_should_abort(self
)) {
267 if (error
== EINTR
|| error
== ERESTART
)
268 act_set_astbsd(self
);
280 return _sleep((caddr_t
)chan
, pri
, (char *)NULL
, 0, (int (*)(int))0, (lck_mtx_t
*)0);
290 int (*continuation
)(int))
292 u_int64_t abstime
= 0;
295 clock_interval_to_deadline(timo
, NSEC_PER_SEC
/ hz
, &abstime
);
297 return _sleep((caddr_t
)chan
, pri
, wmsg
, abstime
, continuation
, mtx
);
308 u_int64_t abstime
= 0;
310 if (ts
&& (ts
->tv_sec
|| ts
->tv_nsec
)) {
311 nanoseconds_to_absolutetime((uint64_t)ts
->tv_sec
* NSEC_PER_SEC
+ ts
->tv_nsec
, &abstime
);
312 clock_absolutetime_interval_to_deadline( abstime
, &abstime
);
315 return _sleep((caddr_t
)chan
, pri
, wmsg
, abstime
, (int (*)(int))0, mtx
);
326 return _sleep((caddr_t
)chan
, pri
, wmsg
, abstime
, (int (*)(int))0, mtx
);
336 u_int64_t abstime
= 0;
339 clock_interval_to_deadline(timo
, NSEC_PER_SEC
/ hz
, &abstime
);
340 return _sleep((caddr_t
)chan
, pri
, wmsg
, abstime
, (int (*)(int))0, (lck_mtx_t
*)0);
349 int (*continuation
)(int))
351 u_int64_t abstime
= 0;
354 clock_interval_to_deadline(timo
, NSEC_PER_SEC
/ hz
, &abstime
);
355 return _sleep((caddr_t
)chan
, pri
, wmsg
, abstime
, continuation
, (lck_mtx_t
*)0);
364 int (*continuation
)(int))
366 return _sleep((caddr_t
)chan
, pri
, wmsg
, abstime
, continuation
, (lck_mtx_t
*)0);
370 * Wake up all processes sleeping on chan.
375 thread_wakeup_prim((caddr_t
)chan
, FALSE
, THREAD_AWAKENED
);
379 * Wake up the first process sleeping on chan.
381 * Be very sure that the first process is really
382 * the right one to wakeup.
385 wakeup_one(caddr_t chan
)
387 thread_wakeup_prim((caddr_t
)chan
, TRUE
, THREAD_AWAKENED
);
391 * Compute the priority of a process when running in user mode.
392 * Arrange to reschedule if the resulting priority is better
393 * than that of the current process.
396 resetpriority(struct proc
*p
)
398 (void)task_importance(p
->task
, -p
->p_nice
);
401 struct loadavg averunnable
=
402 { {0, 0, 0}, FSCALE
}; /* load average, of runnable procs */
404 * Constants for averages over 1, 5, and 15 minutes
405 * when sampling at 5 second intervals.
407 static fixpt_t cexp
[3] = {
408 (fixpt_t
)(0.9200444146293232 * FSCALE
), /* exp(-1/12) */
409 (fixpt_t
)(0.9834714538216174 * FSCALE
), /* exp(-1/60) */
410 (fixpt_t
)(0.9944598480048967 * FSCALE
), /* exp(-1/180) */
414 compute_averunnable(void *arg
)
416 unsigned int nrun
= *(unsigned int *)arg
;
417 struct loadavg
*avg
= &averunnable
;
420 for (i
= 0; i
< 3; i
++)
421 avg
->ldavg
[i
] = (cexp
[i
] * avg
->ldavg
[i
] +
422 nrun
* FSCALE
* (FSCALE
- cexp
[i
])) >> FSHIFT
;