mtx_savecrit is a pil level, not a pstate value, thus mtx_intr_enable

was not doing its thing.
This commit is contained in:
Jake Burkholder 2001-09-03 22:19:04 +00:00
parent 275e4fcf0a
commit 4324ea045e

View File

@ -33,7 +33,7 @@ static __inline void
mtx_intr_enable(struct mtx *mtx)
{
mtx->mtx_savecrit |= PSTATE_IE;
mtx->mtx_savecrit = 0;
}
#endif /* !_MACHINE_MUTEX_H_ */