Don't needlessly pass the diagnostic counter to the idle_event event

handlers.
This commit is contained in:
John Baldwin 2000-10-18 08:10:25 +00:00
parent b082b24f98
commit 86bc23af90
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=67280

View File

@ -103,7 +103,7 @@ idle_proc(void *dummy)
continue;
/* call out to any cpu-becoming-idle events */
EVENTHANDLER_FAST_INVOKE(idle_event, count);
EVENTHANDLER_FAST_INVOKE(idle_event);
}
mtx_enter(&sched_lock, MTX_SPIN);