summaryrefslogtreecommitdiff
path: root/sys/vm
diff options
context:
space:
mode:
authorDavid Greenman <dg@FreeBSD.org>1996-06-27 05:48:51 +0000
committerDavid Greenman <dg@FreeBSD.org>1996-06-27 05:48:51 +0000
commite0959bc037504dbad39e7dbecc2494818e2fb789 (patch)
tree97b84cf3539a58098190f3f32d2c9618f696ad80 /sys/vm
parent423cc733646fed1f34b6edfb8d6eff5009f7a6ec (diff)
Notes
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/vm_glue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_glue.c b/sys/vm/vm_glue.c
index ed32e011f5c9..1d84ce9049c6 100644
--- a/sys/vm/vm_glue.c
+++ b/sys/vm/vm_glue.c
@@ -59,7 +59,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_glue.c,v 1.20.4.4 1996/02/22 11:10:08 davidg Exp $
+ * $Id: vm_glue.c,v 1.20.4.5 1996/06/27 05:39:02 davidg Exp $
*/
#include <sys/param.h>
@@ -456,7 +456,7 @@ retry:
* If the process has been asleep for awhile and had
* most of its pages taken away already, swap it out.
*/
- if (p->p_slptime > 4) {
+ if (p->p_slptime > 10) {
swapout(p);
vm_map_deallocate(&p->p_vmspace->vm_map);
didswap++;