summaryrefslogtreecommitdiffhomepage
path: root/Kernel/Sources/MPManager.cxx
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-31 00:13:51 +0200
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-31 00:13:51 +0200
commit3bfb95803ba25a04ddb57ebbc0f25e4dec29d7e0 (patch)
tree94fc17899142c1631797b9b6257b04359282741b /Kernel/Sources/MPManager.cxx
parent659435af7da4ffb15a309063c892b518707fa9d0 (diff)
[IMP] Can now pass arguments to kernel via handover, new version 0x0113.
[IMP] Timeout functions for heap allocation. [IMP] new mp_ and sched_ category of functions. Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Kernel/Sources/MPManager.cxx')
-rw-r--r--Kernel/Sources/MPManager.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Sources/MPManager.cxx b/Kernel/Sources/MPManager.cxx
index d8faa983..3ad1e8aa 100644
--- a/Kernel/Sources/MPManager.cxx
+++ b/Kernel/Sources/MPManager.cxx
@@ -71,9 +71,9 @@ namespace Kernel
fWakeup = wakeup;
if (!fWakeup)
- rt_hang_thread(fStack);
+ mp_hang_thread(fStack);
else
- rt_wakeup_thread(fStack);
+ mp_wakeup_thread(fStack);
}
EXTERN Bool rt_check_stack(HAL::StackFramePtr stackPtr);