Cleanup MM subsystem headers

This commit is contained in:
2023-10-29 00:52:05 +02:00
parent cc3e9eb5e6
commit 798e4c1d22
7 changed files with 68 additions and 18 deletions

26
xtoskrnl/includes/mm.h Normal file
View File

@@ -0,0 +1,26 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/includes/mm.h
* DESCRIPTION: Private routine definitions for memory manager
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTOSKRNL_MM_H
#define __XTOSKRNL_MM_H
#include <xtos.h>
XTAPI
XTSTATUS
MmAllocateKernelStack(IN PVOID *Stack,
IN BOOLEAN LargeStack,
IN UCHAR SystemNode);
XTAPI
VOID
MmFreeKernelStack(IN PVOID Stack,
IN BOOLEAN LargeStack);
#endif /* __XTOSKRNL_MM_H */