forked from xt-sys/exectos
Cleanup MM subsystem headers
This commit is contained in:
parent
cc3e9eb5e6
commit
798e4c1d22
@ -12,9 +12,5 @@
|
|||||||
#include <xtbase.h>
|
#include <xtbase.h>
|
||||||
|
|
||||||
|
|
||||||
XTFASTCALL
|
|
||||||
VOID
|
|
||||||
MmZeroPages(IN PVOID Address,
|
|
||||||
IN ULONG Size);
|
|
||||||
|
|
||||||
#endif /* __XTDK_AMD64_MMFUNCS_H */
|
#endif /* __XTDK_AMD64_MMFUNCS_H */
|
||||||
|
@ -12,9 +12,5 @@
|
|||||||
#include <xtbase.h>
|
#include <xtbase.h>
|
||||||
|
|
||||||
|
|
||||||
XTFASTCALL
|
|
||||||
VOID
|
|
||||||
MmZeroPages(IN PVOID Address,
|
|
||||||
IN ULONG Size);
|
|
||||||
|
|
||||||
#endif /* __XTDK_I686_MMFUNCS_H */
|
#endif /* __XTDK_I686_MMFUNCS_H */
|
||||||
|
@ -12,15 +12,5 @@
|
|||||||
#include <xtbase.h>
|
#include <xtbase.h>
|
||||||
|
|
||||||
|
|
||||||
XTAPI
|
|
||||||
XTSTATUS
|
|
||||||
MmAllocateKernelStack(IN PVOID *Stack,
|
|
||||||
IN BOOLEAN LargeStack,
|
|
||||||
IN UCHAR SystemNode);
|
|
||||||
|
|
||||||
XTAPI
|
|
||||||
VOID
|
|
||||||
MmFreeKernelStack(IN PVOID Stack,
|
|
||||||
IN BOOLEAN LargeStack);
|
|
||||||
|
|
||||||
#endif /* __XTDK_MMFUNCS_H */
|
#endif /* __XTDK_MMFUNCS_H */
|
||||||
|
20
xtoskrnl/includes/amd64/mm.h
Normal file
20
xtoskrnl/includes/amd64/mm.h
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
/**
|
||||||
|
* PROJECT: ExectOS
|
||||||
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
|
* FILE: xtoskrnl/includes/amd64/mm.h
|
||||||
|
* DESCRIPTION: XT memory manager routines specific to AMD64 architecture
|
||||||
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __XTOSKRNL_AMD64_MM_H
|
||||||
|
#define __XTOSKRNL_AMD64_MM_H
|
||||||
|
|
||||||
|
#include <xtos.h>
|
||||||
|
|
||||||
|
|
||||||
|
XTFASTCALL
|
||||||
|
VOID
|
||||||
|
MmZeroPages(IN PVOID Address,
|
||||||
|
IN ULONG Size);
|
||||||
|
|
||||||
|
#endif /* __XTOSKRNL_AMD64_MM_H */
|
20
xtoskrnl/includes/i686/mm.h
Normal file
20
xtoskrnl/includes/i686/mm.h
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
/**
|
||||||
|
* PROJECT: ExectOS
|
||||||
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
|
* FILE: xtoskrnl/includes/i686/mm.h
|
||||||
|
* DESCRIPTION: XT memory manager routines specific to i686 architecture
|
||||||
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __XTOSKRNL_I686_MM_H
|
||||||
|
#define __XTOSKRNL_I686_MM_H
|
||||||
|
|
||||||
|
#include <xtos.h>
|
||||||
|
|
||||||
|
|
||||||
|
XTFASTCALL
|
||||||
|
VOID
|
||||||
|
MmZeroPages(IN PVOID Address,
|
||||||
|
IN ULONG Size);
|
||||||
|
|
||||||
|
#endif /* __XTOSKRNL_I686_MM_H */
|
26
xtoskrnl/includes/mm.h
Normal file
26
xtoskrnl/includes/mm.h
Normal 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 */
|
@ -16,10 +16,12 @@
|
|||||||
#include "globals.h"
|
#include "globals.h"
|
||||||
#include "hl.h"
|
#include "hl.h"
|
||||||
#include "ke.h"
|
#include "ke.h"
|
||||||
|
#include "mm.h"
|
||||||
#include "po.h"
|
#include "po.h"
|
||||||
#include "rtl.h"
|
#include "rtl.h"
|
||||||
|
|
||||||
#include ARCH_HEADER(globals.h)
|
#include ARCH_HEADER(globals.h)
|
||||||
#include ARCH_HEADER(ar.h)
|
#include ARCH_HEADER(ar.h)
|
||||||
#include ARCH_HEADER(ke.h)
|
#include ARCH_HEADER(ke.h)
|
||||||
|
#include ARCH_HEADER(mm.h)
|
||||||
#include ARCH_HEADER(rtl.h)
|
#include ARCH_HEADER(rtl.h)
|
||||||
|
Loading…
Reference in New Issue
Block a user