Files
exectos/xtoskrnl/includes/mm/alloc.hh
Aiken Harris 7f6114f8e5
Some checks failed
Builds / ExectOS (amd64, debug) (push) Failing after 19s
Builds / ExectOS (i686, debug) (push) Successful in 25s
Builds / ExectOS (amd64, release) (push) Failing after 36s
Builds / ExectOS (i686, release) (push) Successful in 35s
Add skeleton for memory pool allocator
2026-01-29 20:00:09 +01:00

26 lines
525 B
C++

/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/includes/mm/alloc.hh
* DESCRIPTION: Memory manager pool allocation
* DEVELOPERS: Aiken Harris <harraiken91@gmail.com>
*/
#ifndef __XTOSKRNL_MM_ALLOC_HH
#define __XTOSKRNL_MM_ALLOC_HH
#include <xtos.hh>
/* Memory Manager */
namespace MM
{
class Allocator
{
public:
STATIC XTAPI VOID InitializeNonPagedPool(VOID);
};
}
#endif /* __XTOSKRNL_MM_ALLOC_HH */