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 d404b15d8f88cec00f8250c350e99d2c4d546714 Author: ouyangxiangzhen <[email protected]> AuthorDate: Tue Sep 23 14:14:33 2025 +0800 arch/x86_64: Fix compilation error. This commit fixed a compilation error about the undefined sizeof(struct tls_info_s). Signed-off-by: ouyangxiangzhen <[email protected]> --- arch/x86_64/src/intel64/intel64_cpustart.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86_64/src/intel64/intel64_cpustart.c b/arch/x86_64/src/intel64/intel64_cpustart.c index 3cb9854c3b0..52cded73dcd 100644 --- a/arch/x86_64/src/intel64/intel64_cpustart.c +++ b/arch/x86_64/src/intel64/intel64_cpustart.c @@ -33,6 +33,7 @@ #include <arch/irq.h> #include <nuttx/arch.h> #include <nuttx/spinlock.h> +#include <nuttx/tls.h> #include "sched/sched.h" #include "init/init.h"
