summaryrefslogtreecommitdiffhomepage
path: root/Private/HALKit/AMD64/HalHardwareMP.cpp
diff options
context:
space:
mode:
authorAmlal <amlalelmahrouss@icloud.com>2024-04-22 08:37:14 +0000
committerAmlal <amlalelmahrouss@icloud.com>2024-04-22 08:37:14 +0000
commit09e1c9738bc5dce28a6e181ebc585f0dea01f109 (patch)
tree2df231f8601402147514572120f762c69bf5c84a /Private/HALKit/AMD64/HalHardwareMP.cpp
parent41cc598c501ee190385c041b2149eae228b24741 (diff)
parent76c0c6b21532aee82df5bd62cd886bc63d933899 (diff)
Merged in MHR-5 (pull request #1)
MHR-5
Diffstat (limited to 'Private/HALKit/AMD64/HalHardwareMP.cpp')
-rw-r--r--Private/HALKit/AMD64/HalHardwareMP.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/Private/HALKit/AMD64/HalHardwareMP.cpp b/Private/HALKit/AMD64/HalHardwareMP.cpp
index 0e9f3022..135222b9 100644
--- a/Private/HALKit/AMD64/HalHardwareMP.cpp
+++ b/Private/HALKit/AMD64/HalHardwareMP.cpp
@@ -19,20 +19,12 @@ void rt_wakeup_thread(HAL::StackFrame* stack) {
HAL::rt_sti();
}
-/// @brief Hangs until RCX register is cleared.
-/// @param stack
-static void __rt_hang_proc(HAL::StackFrame* stack) {
- while (stack->Rcx == 1) {
- ;
- }
-}
-
/// @brief makes thread sleep.
/// hooks and hangs thread to prevent code from executing.
void rt_hang_thread(HAL::StackFrame* stack) {
HAL::rt_cli();
- __rt_hang_proc(stack);
+ stack->Rcx = 1;
HAL::rt_sti();
}