Replaced string to convert

This commit is contained in:
Alex
2022-10-20 01:06:20 +03:00
parent a6d5e08e3b
commit 7750dd777e
10 changed files with 316 additions and 149 deletions

View File

@ -1,6 +1,6 @@
#include <memory.hpp>
#include <string.h>
#include <convert.h>
#include <debug.h>
#include "HeapAllocators/Xalloc.hpp"
@ -11,14 +11,6 @@ using namespace Memory;
Physical KernelAllocator;
PageTable *KernelPageTable = nullptr;
enum MemoryAllocatorType
{
None,
Pages,
XallocV1,
liballoc11
};
static MemoryAllocatorType AllocatorType = MemoryAllocatorType::None;
Xalloc::AllocatorV1 *XallocV1Allocator = nullptr;