From da8b3304fbb4ffd4caafc80ad6513aeb5c72cf28 Mon Sep 17 00:00:00 2001 From: David Greenman Date: Sun, 9 Oct 1994 00:18:22 +0000 Subject: [PATCH] Call resetpriority, not setpriority() ...oops. Submitted by: John Dyson --- sys/vm/vm_fault.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/vm/vm_fault.c b/sys/vm/vm_fault.c index d90f348147d..92d8ef4c08b 100644 --- a/sys/vm/vm_fault.c +++ b/sys/vm/vm_fault.c @@ -66,7 +66,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_fault.c,v 1.4 1994/08/06 09:15:37 davidg Exp $ + * $Id: vm_fault.c,v 1.5 1994/10/05 09:48:42 davidg Exp $ */ /* @@ -330,7 +330,7 @@ vm_fault(map, vaddr, fault_type, change_wiring) psignal(curproc, SIGKILL); curproc->p_estcpu = 0; curproc->p_nice = PRIO_MIN; - setpriority(curproc); + resetpriority(curproc); } }