Implemented MBXes

This commit is contained in:
Arthur Blot 2012-11-08 14:24:51 +01:00
parent 4fedfc72f6
commit b96d86ab7f
8 changed files with 291 additions and 106 deletions

View file

@ -349,7 +349,7 @@ public:
PartitionMemoryBlock(BlockAllocator *_alloc, u32 size, bool fromEnd)
{
alloc = _alloc;
address = alloc->Alloc(size, fromEnd);
address = alloc->Alloc(size, fromEnd, "PMB");
alloc->ListBlocks();
}
~PartitionMemoryBlock()