diff options
author | Bret Lambert <blambert@cvs.openbsd.org> | 2009-08-11 18:43:34 +0000 |
---|---|---|
committer | Bret Lambert <blambert@cvs.openbsd.org> | 2009-08-11 18:43:34 +0000 |
commit | a6235ea9f44b36a886c9594593dd80fc9d47fa90 (patch) | |
tree | 0778aeba8f333cc1ba84b49ab44ccad5b155498a /sys/uvm/uvm_extern.h | |
parent | 935b5746db4dbaa64a95e16e092ba253ec4313c0 (diff) |
uvm_scheduler() sounds important, but ``while(1) tsleep()'' is kinda lame
inline the loop in the one place it exists, and remove it from uvm
adjust a comment mentioning it accordingly
originally inspired by a diff fixing a comment from oga@
ok art@ beck@ miod@ oga@
Diffstat (limited to 'sys/uvm/uvm_extern.h')
-rw-r--r-- | sys/uvm/uvm_extern.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/uvm/uvm_extern.h b/sys/uvm/uvm_extern.h index 3754a927046..6c514abcf1e 100644 --- a/sys/uvm/uvm_extern.h +++ b/sys/uvm/uvm_extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_extern.h,v 1.81 2009/06/16 23:54:58 oga Exp $ */ +/* $OpenBSD: uvm_extern.h,v 1.82 2009/08/11 18:43:33 blambert Exp $ */ /* $NetBSD: uvm_extern.h,v 1.57 2001/03/09 01:02:12 chs Exp $ */ /* @@ -491,7 +491,6 @@ void uvm_fork(struct proc *, struct proc *, boolean_t, void uvm_exit(struct proc *); void uvm_init_limits(struct proc *); boolean_t uvm_kernacc(caddr_t, size_t, int); -__dead void uvm_scheduler(void); int uvm_vslock(struct proc *, caddr_t, size_t, vm_prot_t); |