mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Replaced p (undeclared) with curproc (after i386/isa/npx.c).
This commit is contained in:
parent
57db636284
commit
e70037181a
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue