summaryrefslogtreecommitdiffhomepage
path: root/Private/ArchKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-02 13:49:50 +0100
committerAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-02 13:49:50 +0100
commite559cf01834340d0a4dfcb45f7bdf081e8994032 (patch)
treeb7d1aa03111f83c0b7b058dca2786a6bd234a7e3 /Private/ArchKit
parent05eca8d3061b60eac0a652a4b1e39269a9af79e8 (diff)
Kernel: Port toolchain to mingw (PE/COFF)
Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private/ArchKit')
-rw-r--r--Private/ArchKit/Arch.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Private/ArchKit/Arch.hpp b/Private/ArchKit/Arch.hpp
index 903e72c8..4216f9b3 100644
--- a/Private/ArchKit/Arch.hpp
+++ b/Private/ArchKit/Arch.hpp
@@ -80,7 +80,7 @@ namespace HCore
extern HCore::Array<void (*)(HCore::Int32 id, HCore::HAL::StackFrame *), kMaxSyscalls> kSyscalls;
extern "C" void rt_wait_for_io();
-extern "C" void rt_syscall_handle(HCore::HAL::StackFrame *stack);
+extern "C" void rt_syscall_handle(HCore::HAL::StackFrame* stackFrame);
extern "C" HCore::HAL::StackFrame* rt_get_current_context();
-extern "C" int rt_do_context_switch(HCore::HAL::StackFrame* stackLeft, HCore::HAL::StackFrame* stackRight);
+extern "C" int rt_do_context_switch(HCore::HAL::StackFrame* stackFrame);