From 662780bcc61753a9aec6d5052e5c072b3f869b79 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 17 Mar 2026 00:38:48 -1000 Subject: [PATCH] Simplify scheduler now comment --- tests/benchmarks/core/bench_scheduler.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/benchmarks/core/bench_scheduler.cpp b/tests/benchmarks/core/bench_scheduler.cpp index c0f47b0fc43..897e3adc98b 100644 --- a/tests/benchmarks/core/bench_scheduler.cpp +++ b/tests/benchmarks/core/bench_scheduler.cpp @@ -72,10 +72,7 @@ static void Scheduler_Call_5IntervalsFiring(benchmark::State &state) { } scheduler.process_to_add(); - // Start at a known time so intervals are immediately due. - // now increases monotonically across all iterations — this is required - // because millis_64_from_() tracks rollovers and going backwards would - // appear as a 32-bit wrap (~49 day jump forward). + // Must be monotonic — millis_64_from_() tracks rollovers. uint32_t now = millis() + 100; for (auto _ : state) {