summaryrefslogtreecommitdiffstats
path: root/sys/vm
diff options
context:
space:
mode:
authordyson <dyson@FreeBSD.org>1998-06-02 05:39:13 +0000
committerdyson <dyson@FreeBSD.org>1998-06-02 05:39:13 +0000
commit5dbf701901a1b61c339883b7e0ae9d046af6c441 (patch)
treec8f24ae0471cc7880d9d20756a6a62e8f4b2b0cb /sys/vm
parent146450061117fb5ae961626bc79a78e1e8039b43 (diff)
downloadFreeBSD-src-5dbf701901a1b61c339883b7e0ae9d046af6c441.zip
FreeBSD-src-5dbf701901a1b61c339883b7e0ae9d046af6c441.tar.gz
Correct sleep priority.
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/vm_pageout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c
index 1e51f0a..2c090ab 100644
--- a/sys/vm/vm_pageout.c
+++ b/sys/vm/vm_pageout.c
@@ -65,7 +65,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_pageout.c,v 1.120 1998/03/16 01:55:58 dyson Exp $
+ * $Id: vm_pageout.c,v 1.121 1998/03/30 09:56:58 phk Exp $
*/
/*
@@ -1278,7 +1278,7 @@ vm_daemon()
struct proc *p;
while (TRUE) {
- tsleep(&vm_daemon_needed, PUSER, "psleep", 0);
+ tsleep(&vm_daemon_needed, PPAUSE, "psleep", 0);
if (vm_pageout_req_swapout) {
swapout_procs(vm_pageout_req_swapout);
vm_pageout_req_swapout = 0;
OpenPOWER on IntegriCloud