22 lines
473 B
C++
22 lines
473 B
C++
/**
|
|
* PROJECT: ExectOS
|
|
* COPYRIGHT: See COPYING.md in the top level directory
|
|
* FILE: xtoskrnl/includes/mm.hh
|
|
* DESCRIPTION: Memory Manager
|
|
* DEVELOPERS: Aiken Harris <harraiken91@gmail.com>
|
|
*/
|
|
|
|
#ifndef __XTOSKRNL_MM_HH
|
|
#define __XTOSKRNL_MM_HH
|
|
|
|
#include <xtos.hh>
|
|
|
|
#include XTOS_ARCH_HEADER(mm, pagemap.hh)
|
|
|
|
#include <mm/hlpool.hh>
|
|
#include <mm/init.hh>
|
|
#include <mm/kpool.hh>
|
|
#include <mm/paging.hh>
|
|
|
|
#endif /* __XTOSKRNL_MM_HH */
|