summaryrefslogtreecommitdiffhomepage
path: root/Boot/BootKit
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-30 18:06:17 +0200
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-30 18:06:17 +0200
commit01fb3ca21dd5846ecd7e4e94571ede5a5264d9a6 (patch)
tree60201d088bb2c1cc12777611b15c2708bf71787b /Boot/BootKit
parent579d076015eece5961b1034979ade2be09c6bfcd (diff)
[SMP] WiP impelementation of SMP inside the HAL.
- Doing R&D on SMP on AMD64, - Working on a first application. Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Boot/BootKit')
-rw-r--r--Boot/BootKit/STB.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Boot/BootKit/STB.hxx b/Boot/BootKit/STB.hxx
index e99edc36..8c8f9b92 100644
--- a/Boot/BootKit/STB.hxx
+++ b/Boot/BootKit/STB.hxx
@@ -17,9 +17,9 @@
#define STBI_ONLY_GIF 1
#define STBI_ASSERT(x) MUST_PASS(x)
-#define STBI_MALLOC(x) Kernel::ke_new_ke_heap(x, true, true)
-#define STBI_REALLOC(p, x) Kernel::ke_realloc_ke_heap(p, x);
-#define STBI_FREE(x) Kernel::ke_delete_ke_heap(x)
+#define STBI_MALLOC(x) Kernel::mm_new_ke_heap(x, true, true)
+#define STBI_REALLOC(p, x) Kernel::mm_realloc_ke_heap(p, x);
+#define STBI_FREE(x) Kernel::mm_delete_ke_heap(x)
#define STB_IMAGE_IMPLEMENTATION 1
#include <KernelKit/Heap.hxx>