From 441c1460b29f5003a5478032f17a6c5f486dd1fd Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 3 Sep 2024 15:34:28 +0200 Subject: [ FIX ] Almost fixed the ring-3 switch code, which currently gives an UD error. [ REFACTOR ] Kernel is now a EXE, instead of being a DLL. [ FIX ] Fixed some parts of the user scheduler and kernel, cleaned it up also. Signed-off-by: Amlal El Mahrouss --- dev/ZKA/HALKit/AXP/CoreSyscallHandlerDEC.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev/ZKA/HALKit/AXP/CoreSyscallHandlerDEC.cpp') diff --git a/dev/ZKA/HALKit/AXP/CoreSyscallHandlerDEC.cpp b/dev/ZKA/HALKit/AXP/CoreSyscallHandlerDEC.cpp index 148fa020..5f71380d 100644 --- a/dev/ZKA/HALKit/AXP/CoreSyscallHandlerDEC.cpp +++ b/dev/ZKA/HALKit/AXP/CoreSyscallHandlerDEC.cpp @@ -14,11 +14,11 @@ EXTERN_C void rt_syscall_handle(Kernel::HAL::StackFrame* stack) { if (stack->Rcx <= (kSyscalls.Count() - 1)) { - Kernel::kcout << "newoskrnl.dll: syscall: enter.\r"; + Kernel::kcout << "newoskrnl.exe: syscall: enter.\r"; if (kSyscalls[stack->Rcx].Leak().Leak().fHooked) (kSyscalls[stack->Rcx].Leak().Leak().fProc)(stack); - Kernel::kcout << "newoskrnl.dll: syscall: exit.\r"; + Kernel::kcout << "newoskrnl.exe: syscall: exit.\r"; } } -- cgit v1.2.3