Skip to content

Commit

Permalink
orbis-kernel: kalloc: do not use debug heap by default
Browse files Browse the repository at this point in the history
  • Loading branch information
DHrpcs3 committed Oct 14, 2024
1 parent 55f1f26 commit 22674a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orbis-kernel/src/KernelContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 22674a4

Please sign in to comment.