orbis-kernel: kalloc: do not use debug heap by default

This commit is contained in:
DH 2024-10-14 19:51:04 +03:00
parent 55f1f26806
commit 22674a4c67

View file

@ -13,7 +13,7 @@
static const std::uint64_t g_allocProtWord = 0xDEADBEAFBADCAFE1;
static constexpr auto kHeapBaseAddress = 0x00000800'0000'0000;
static constexpr auto kHeapSize = 0x10'0000'0000;
static constexpr int kDebugHeap = 2;
static constexpr int kDebugHeap = 0;
namespace orbis {
thread_local Thread *g_currentThread;