Refactor memory manager initialization into MM::Manager
Some checks failed
Builds / ExectOS (amd64, debug) (push) Failing after 24s
Builds / ExectOS (amd64, release) (push) Failing after 22s
Builds / ExectOS (i686, debug) (push) Failing after 23s
Builds / ExectOS (i686, release) (push) Failing after 21s

This commit is contained in:
2025-12-13 20:21:08 +01:00
parent ee9514fd5c
commit 237f6a2974
4 changed files with 15 additions and 14 deletions

View File

@@ -1,13 +1,13 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/includes/mm/init.hh
* DESCRIPTION: Memory Manager initialization
* FILE: xtoskrnl/includes/mm/mmgr.hh
* DESCRIPTION: Memory Manager
* DEVELOPERS: Aiken Harris <harraiken91@gmail.com>
*/
#ifndef __XTOSKRNL_MM_INIT_HH
#define __XTOSKRNL_MM_INIT_HH
#ifndef __XTOSKRNL_MM_MMGR_HH
#define __XTOSKRNL_MM_MMGR_HH
#include <xtos.hh>
@@ -15,7 +15,7 @@
/* Memory Manager */
namespace MM
{
class Init
class Manager
{
private:
STATIC PLOADER_MEMORY_DESCRIPTOR FreeDescriptor;
@@ -36,4 +36,4 @@ namespace MM
};
}
#endif /* __XTOSKRNL_MM_INIT_HH */
#endif /* __XTOSKRNL_MM_MMGR_HH */