From 07bc3537a9c613a26b93f0c054d96e61dbf71566 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Fri, 9 Jul 2021 19:11:31 +0200 Subject: [PATCH] fix doxygen @todo command --- common/lib/tsc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lib/tsc.cpp b/common/lib/tsc.cpp index 602df8ce0..377212095 100644 --- a/common/lib/tsc.cpp +++ b/common/lib/tsc.cpp @@ -59,7 +59,7 @@ int tsc_init(struct tsc *t) int64_t frequency; size_t lenp = sizeof(frequency); - /** @todo: machdep.tsc.frequency seems to be a measured frequency (based on local APIC? + /** @todo machdep.tsc.frequency seems to be a measured frequency (based on local APIC? * We should figure out which frequency is more accurate */ // ret = sysctlbyname("hw.cpufrequency", &frequency, &lenp, nullptr, 0); ret = sysctlbyname("machdep.tsc.frequency", &frequency, &lenp, nullptr, 0);