diff options
Diffstat (limited to 'kern/ipc_sched.c')
-rw-r--r-- | kern/ipc_sched.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/ipc_sched.c b/kern/ipc_sched.c index d5b9263c..cc1672d6 100644 --- a/kern/ipc_sched.c +++ b/kern/ipc_sched.c @@ -214,7 +214,7 @@ thread_handoff( thread_unlock(new); (void) splx(s); - counter_always(c_thread_handoff_misses++); + counter(c_thread_handoff_misses++); return FALSE; } @@ -278,6 +278,6 @@ thread_handoff( after_old_thread: (void) splx(s); - counter_always(c_thread_handoff_hits++); + counter(c_thread_handoff_hits++); return TRUE; } |