Deleted Added
full compact
26c26
< * $FreeBSD: head/sys/kern/kern_intr.c 71240 2001-01-19 09:57:29Z peter $
---
> * $FreeBSD: head/sys/kern/kern_intr.c 72200 2001-02-09 06:11:45Z bmilekic $
171c171
< mtx_enter(&sched_lock, MTX_SPIN);
---
> mtx_lock_spin(&sched_lock);
183c183
< mtx_exit(&sched_lock, MTX_SPIN);
---
> mtx_unlock_spin(&sched_lock);
226c226
< mtx_enter(&Giant, MTX_DEF);
---
> mtx_lock(&Giant);
229c229
< mtx_exit(&Giant, MTX_DEF);
---
> mtx_unlock(&Giant);
239c239
< mtx_enter(&sched_lock, MTX_SPIN);
---
> mtx_lock_spin(&sched_lock);
246c246
< mtx_exit(&sched_lock, MTX_SPIN);
---
> mtx_unlock_spin(&sched_lock);