mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
c501d8112c
svn path=/branches/aicom-network-fixes/; revision=34994
27 lines
672 B
C
27 lines
672 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: ntoskrnl/mm/aspace.c
|
|
* PURPOSE: Manages address spaces
|
|
*
|
|
* PROGRAMMERS: David Welch (welch@cwcom.net)
|
|
*/
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
#include <ntoskrnl.h>
|
|
#include <internal/debug.h>
|
|
|
|
#if defined (ALLOC_PRAGMA)
|
|
#pragma alloc_text(INIT, MmInitializeKernelAddressSpace)
|
|
#endif
|
|
|
|
|
|
/* GLOBALS ******************************************************************/
|
|
|
|
PMM_AVL_TABLE MmKernelAddressSpace;
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
|
|
/* EOF */
|