Replaced p (undeclared) with curproc (after i386/isa/npx.c).

This commit is contained in:
KATO Takenori 2001-03-08 14:25:51 +00:00
parent 57db636284
commit e70037181a

View file

@ -835,9 +835,9 @@ npx_intr(dummy)
*
* Treat them like a true async interrupt.
*/
PROC_LOCK(p);
PROC_LOCK(curproc);
psignal(curproc, SIGFPE);
PROC_UNLOCK(p);
PROC_UNLOCK(curproc);
}
mtx_unlock(&Giant);
}