Fix typo in code obviously not being compiled on any of my machines.

found by: rdivacky@
This commit is contained in:
Julian Elischer 2007-10-28 23:11:57 +00:00
parent 3718612847
commit 3c1ffc320f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=173122

View File

@ -858,7 +858,7 @@ intr_event_schedule_thread(struct intr_event *ie, struct intr_thread *it)
thread_lock(td);
if (TD_AWAITING_INTR(td)) {
CTR3(KTR_INTR, "%s: schedule pid %d (%s)", __func__, p->p_pid,
th->th_name);
td->td_name);
TD_CLR_IWAIT(td);
sched_add(td, SRQ_INTR);
} else {