ReactOS 0.4.16-dev-340-g0540c21
|
#include "sacdrv.h"
Go to the source code of this file.
Functions | |
BOOLEAN NTAPI | InitializeMemoryManagement (VOID) |
VOID NTAPI | FreeMemoryManagement (VOID) |
PVOID NTAPI | MyAllocatePool (IN SIZE_T PoolSize, IN ULONG Tag, IN PCHAR File, IN ULONG Line) |
VOID NTAPI | MyFreePool (IN PVOID *Block) |
Variables | |
LONG | TotalFrees |
LONG | TotalBytesFreed |
LONG | TotalAllocations |
LONG | TotalBytesAllocated |
KSPIN_LOCK | MemoryLock |
PSAC_MEMORY_LIST | GlobalMemoryList |
Definition at line 62 of file memory.c.
Referenced by FreeGlobalData().
Definition at line 23 of file memory.c.
Referenced by InitializeGlobalData().
Definition at line 91 of file memory.c.
Definition at line 234 of file memory.c.
PSAC_MEMORY_LIST GlobalMemoryList |
Definition at line 17 of file memory.c.
Referenced by FreeMemoryManagement(), InitializeMemoryManagement(), MyAllocatePool(), and MyFreePool().
KSPIN_LOCK MemoryLock |
Definition at line 16 of file memory.c.
Referenced by FreeMemoryManagement(), InitializeMemoryManagement(), MyAllocatePool(), and MyFreePool().
LONG TotalAllocations |
Definition at line 15 of file memory.c.
Referenced by MyAllocatePool().
LONG TotalBytesAllocated |
Definition at line 15 of file memory.c.
Referenced by MyAllocatePool().
LONG TotalBytesFreed |
Definition at line 15 of file memory.c.
Referenced by MyFreePool().
LONG TotalFrees |
Definition at line 15 of file memory.c.
Referenced by MyFreePool().