From 2f33e7a964dbdea3b7a29fce72fb301bfe186709 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Holz?= Date: Sun, 4 Feb 2024 16:55:33 +0100 Subject: [PATCH] Kernel/riscv64: Stub out Processor::set_thread_specific_data --- Kernel/Arch/riscv64/Processor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/Arch/riscv64/Processor.cpp b/Kernel/Arch/riscv64/Processor.cpp index a0a6584161..9e8c355c1b 100644 --- a/Kernel/Arch/riscv64/Processor.cpp +++ b/Kernel/Arch/riscv64/Processor.cpp @@ -295,7 +295,7 @@ StringView ProcessorBase::platform_string() template void ProcessorBase::set_thread_specific_data(VirtualAddress) { - TODO_RISCV64(); + // FIXME: Add support for thread-local storage on RISC-V } template