From fb790b07aeba8e22e4190cf3e1834d11ecde6c96 Mon Sep 17 00:00:00 2001 From: Amlal Date: Fri, 25 Apr 2025 13:08:33 +0200 Subject: dev: better .clang-format, ran format command. Signed-off-by: Amlal --- dev/kernel/HALKit/AMD64/HalDebugPort.cc | 41 +++++++++++++++------------------ 1 file changed, 18 insertions(+), 23 deletions(-) (limited to 'dev/kernel/HALKit/AMD64/HalDebugPort.cc') diff --git a/dev/kernel/HALKit/AMD64/HalDebugPort.cc b/dev/kernel/HALKit/AMD64/HalDebugPort.cc index 63bc99bd..6289ff1f 100644 --- a/dev/kernel/HALKit/AMD64/HalDebugPort.cc +++ b/dev/kernel/HALKit/AMD64/HalDebugPort.cc @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024-2025, Amlal El Mahrouss, all rights reserved. + Copyright (C) 2024-2025, Amlal El Mahrouss, all rights reserved. ------------------------------------------- */ @@ -12,31 +12,26 @@ // after that we have start of additional data. -namespace Kernel -{ - void rt_debug_listen(DebuggerPortHeader* theHook) noexcept - { - if (theHook == nullptr) - return; +namespace Kernel { +void rt_debug_listen(DebuggerPortHeader* theHook) noexcept { + if (theHook == nullptr) return; - for (UInt32 i = 0U; i < kDebugMaxPorts; ++i) - { - HAL::rt_out16(theHook->fPort[i], kDebugMag0); - HAL::rt_wait_400ns(); + for (UInt32 i = 0U; i < kDebugMaxPorts; ++i) { + HAL::rt_out16(theHook->fPort[i], kDebugMag0); + HAL::rt_wait_400ns(); - HAL::rt_out16(theHook->fPort[i], kDebugMag1); - HAL::rt_wait_400ns(); + HAL::rt_out16(theHook->fPort[i], kDebugMag1); + HAL::rt_wait_400ns(); - HAL::rt_out16(theHook->fPort[i], kDebugMag2); - HAL::rt_wait_400ns(); + HAL::rt_out16(theHook->fPort[i], kDebugMag2); + HAL::rt_wait_400ns(); - HAL::rt_out16(theHook->fPort[i], kDebugMag3); - HAL::rt_wait_400ns(); + HAL::rt_out16(theHook->fPort[i], kDebugMag3); + HAL::rt_wait_400ns(); - if (HAL::rt_in16(theHook->fPort[i]) != kDebugUnboundPort) - ++theHook->fPortCnt; + if (HAL::rt_in16(theHook->fPort[i]) != kDebugUnboundPort) ++theHook->fPortCnt; - HAL::rt_wait_400ns(); - } - } -} // namespace Kernel + HAL::rt_wait_400ns(); + } +} +} // namespace Kernel -- cgit v1.2.3 From f11b6571d6d45b6d283761031b64b205fed63cf1 Mon Sep 17 00:00:00 2001 From: Amlal Date: Fri, 25 Apr 2025 13:10:03 +0200 Subject: dev: compiler error fixes. Signed-off-by: Amlal --- dev/kernel/HALKit/AMD64/HalDebugPort.cc | 20 +------------------- dev/kernel/KernelKit/BinaryMutex.h | 2 +- 2 files changed, 2 insertions(+), 20 deletions(-) (limited to 'dev/kernel/HALKit/AMD64/HalDebugPort.cc') diff --git a/dev/kernel/HALKit/AMD64/HalDebugPort.cc b/dev/kernel/HALKit/AMD64/HalDebugPort.cc index 6289ff1f..e7448aa3 100644 --- a/dev/kernel/HALKit/AMD64/HalDebugPort.cc +++ b/dev/kernel/HALKit/AMD64/HalDebugPort.cc @@ -14,24 +14,6 @@ namespace Kernel { void rt_debug_listen(DebuggerPortHeader* theHook) noexcept { - if (theHook == nullptr) return; - - for (UInt32 i = 0U; i < kDebugMaxPorts; ++i) { - HAL::rt_out16(theHook->fPort[i], kDebugMag0); - HAL::rt_wait_400ns(); - - HAL::rt_out16(theHook->fPort[i], kDebugMag1); - HAL::rt_wait_400ns(); - - HAL::rt_out16(theHook->fPort[i], kDebugMag2); - HAL::rt_wait_400ns(); - - HAL::rt_out16(theHook->fPort[i], kDebugMag3); - HAL::rt_wait_400ns(); - - if (HAL::rt_in16(theHook->fPort[i]) != kDebugUnboundPort) ++theHook->fPortCnt; - - HAL::rt_wait_400ns(); - } + NE_UNUSED(theHook); } } // namespace Kernel diff --git a/dev/kernel/KernelKit/BinaryMutex.h b/dev/kernel/KernelKit/BinaryMutex.h index 5b7200f9..a1cd5b7c 100644 --- a/dev/kernel/KernelKit/BinaryMutex.h +++ b/dev/kernel/KernelKit/BinaryMutex.h @@ -34,6 +34,6 @@ class BinaryMutex final { NE_COPY_DEFAULT(BinaryMutex) private: - USER_PROCESS fLockingProcess; + USER_PROCESS& fLockingProcess; }; } // namespace Kernel -- cgit v1.2.3