From e70037181a6608a79fb6ac53c5fd4be4eeec7208 Mon Sep 17 00:00:00 2001 From: KATO Takenori Date: Thu, 8 Mar 2001 14:25:51 +0000 Subject: [PATCH] Replaced p (undeclared) with curproc (after i386/isa/npx.c). --- sys/pc98/pc98/npx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/pc98/pc98/npx.c b/sys/pc98/pc98/npx.c index e31e308b447..c8c0c735671 100644 --- a/sys/pc98/pc98/npx.c +++ b/sys/pc98/pc98/npx.c @@ -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); }