#include <os.h>
#include <Mutex.h>
#include <ErrorType.h>
Include dependency graph for Allocator.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
class | VarSizeInfo |
class | PageInfo |
class | ChunkIterator |
class | Chunk |
Typedefs | |
typedef void | Page |
Enumerations | |
enum | AllocType { FixedSizeAllocator = 0, VariableSizeAllocator = 1, UnknownAllocator } |
typedef void Page |
Definition at line 22 of file Allocator.h.
enum AllocType |
Definition at line 24 of file Allocator.h.
00025 { 00026 FixedSizeAllocator = 0, 00027 VariableSizeAllocator = 1, 00028 UnknownAllocator 00029 };