mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-12 07:49:14 +00:00
Update kernel code
This commit is contained in:
@ -162,6 +162,11 @@ void ParseConfig(char *ConfigString, KernelConfig *ModConfig)
|
||||
KPrint("\eAAFFAAUsing XallocV1 as memory allocator");
|
||||
ModConfig->AllocatorType = Memory::MemoryAllocatorType::XallocV1;
|
||||
}
|
||||
else if (strcmp(value, "xallocv2") == 0)
|
||||
{
|
||||
KPrint("\eAAFFAAUsing XallocV2 as memory allocator");
|
||||
ModConfig->AllocatorType = Memory::MemoryAllocatorType::XallocV2;
|
||||
}
|
||||
else if (strcmp(value, "liballoc11") == 0)
|
||||
{
|
||||
KPrint("\eAAFFAAUsing Liballoc11 as memory allocator");
|
||||
|
Reference in New Issue
Block a user