feat: split syscalls into files, change max process ceiling

This commit is contained in:
2026-02-22 17:23:35 +01:00
parent a001fa513d
commit 1568378d04
22 changed files with 1181 additions and 872 deletions
+18
View File
@@ -0,0 +1,18 @@
/*
* MemInfo.hpp
* SYS_MEMSTATS syscall
* Copyright (c) 2026 Daniel Hammer
*/
#pragma once
#include <Memory/PageFrameAllocator.hpp>
#include "Syscall.hpp"
namespace Zenith {
static void Sys_MemStats(MemStats* out) {
if (out == nullptr) return;
Memory::g_pfa->GetStats(out);
}
};