summaryrefslogtreecommitdiffhomepage
path: root/Kernel/Sources/ProcessHeap.cxx
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-31 16:40:11 +0200
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-31 16:42:42 +0200
commit63dc1384bcbf8caf4ca53c715628db2c36b0b096 (patch)
tree2937e78fc2f0e729052660bdd1c74fdacf57d0ec /Kernel/Sources/ProcessHeap.cxx
parent59e0caa55e97f1a998904f404e5fedac3b2b0ec6 (diff)
[IMP] SEE BELOW.
- Support for shared libraries inside a process. - SMP improvements, add the PROCESS_CONTROL_BLOCK, to handle task switching. - Add MUST_PASS in HardwareTimer class. - Add rtl.internal.inl for SCM internal implementation. Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Kernel/Sources/ProcessHeap.cxx')
-rw-r--r--Kernel/Sources/ProcessHeap.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Sources/ProcessHeap.cxx b/Kernel/Sources/ProcessHeap.cxx
index 86ac1554..414cd934 100644
--- a/Kernel/Sources/ProcessHeap.cxx
+++ b/Kernel/Sources/ProcessHeap.cxx
@@ -199,7 +199,7 @@ namespace Kernel
/// @brief Creates a new pool pointer.
/// @param flags the flags attached to it.
/// @return a pool pointer with selected permissions.
- VoidPtr rt_new_heap(Int32 flags)
+ VoidPtr sched_new_heap(Int32 flags)
{
if (!ProcessHeapHelper::IsEnabled())
return nullptr;
@@ -233,7 +233,7 @@ namespace Kernel
/// @brief free a pool pointer.
/// @param ptr The pool pointer to free.
/// @return status code
- Int32 rt_free_heap(VoidPtr ptr)
+ Int32 sched_free_heap(VoidPtr ptr)
{
if (!ProcessHeapHelper::IsEnabled())
return -1;