feat: rename 'ZenithOS' => 'MontaukOS' and fix build system issues

This commit is contained in:
2026-02-28 12:06:18 +01:00
parent 1809ae55e5
commit 83016847b4
136 changed files with 1669 additions and 51769 deletions
+1 -1
View File
@@ -124,7 +124,7 @@ namespace Memory {
}
}
void PageFrameAllocator::GetStats(Zenith::MemStats* out) {
void PageFrameAllocator::GetStats(Montauk::MemStats* out) {
if (!out) return;
Lock.Acquire();
uint64_t freeBytes = 0;
+1 -1
View File
@@ -29,7 +29,7 @@ public:
void Free(void* ptr);
void Free(void* ptr, int n);
void GetStats(Zenith::MemStats* out);
void GetStats(Montauk::MemStats* out);
};
extern PageFrameAllocator* g_pfa;