diff options
Diffstat (limited to 'sys/vm/vm_pageout.c')
-rw-r--r-- | sys/vm/vm_pageout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c index 5f1b56d..8a1ffcc 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.136 1999/02/08 00:37:36 dillon Exp $ + * $Id: vm_pageout.c,v 1.138 1999/02/19 19:14:48 luoqi Exp $ */ /* @@ -1144,7 +1144,7 @@ rescan0: /* * if this is a system process, skip it */ - if ((p->p_flag & P_SYSTEM) || (p->p_pid == 1) || + if ((p->p_flag & (P_SYSTEM|P_NOSWAP)) || (p->p_pid == 1) || ((p->p_pid < 48) && (vm_swap_size != 0))) { continue; } |