Remove excess logging.

This commit is contained in:
OBattler
2026-01-10 04:47:01 +01:00
parent b857e809bf
commit ca2a5a1e99
2 changed files with 3 additions and 13 deletions

View File

@@ -124,11 +124,8 @@ timer_process(void)
while (1) {
pc_timer_t *timer = timer_head;
if (!TIMER_LESS_THAN_VAL(timer, (uint64_t) tsc)) {
if (num == 0)
pclog("No processing because all timers expire later\n");
if (!TIMER_LESS_THAN_VAL(timer, (uint64_t) tsc))
break;
}
timer_remove_head();
@@ -150,9 +147,6 @@ timer_process(void)
}
timer_target = timer_head->ts_integer;
if (old_target > timer_target)
pclog("Timer wraparound!\n");
}
void