This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 254df1721a1c7c582fc9f00775b93fc87e77ddad Author: ouyangxiangzhen <[email protected]> AuthorDate: Wed Jan 7 14:58:44 2026 +0800 sched/hrtimer: Fix functional correctness issue. This commit added dependency on CONFIG_SYSTEM_TIME64 for the hrtimer, sin ce the hrtimer use `clock_compare` to compare 64-bit time. Signed-off-by: ouyangxiangzhen <[email protected]> --- sched/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/sched/Kconfig b/sched/Kconfig index 17892ad4b88..d1a1e07c3fb 100644 --- a/sched/Kconfig +++ b/sched/Kconfig @@ -2007,5 +2007,6 @@ config CUSTOM_SEMAPHORE_MAXVALUE config HRTIMER bool "High resolution timer support" default n + depends on SYSTEM_TIME64 ---help--- Enable to support high resolution timer
