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

This commit is contained in:
kato 2001-03-08 14:25:51 +00:00
parent fb3c10a762
commit 7186b5af06

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);
}