1

enable list allocator until i fix the other one

This commit is contained in:
2022-07-11 19:22:43 +02:00
parent a4cb8f9fda
commit 996a45d7f8
2 changed files with 4 additions and 4 deletions

View File

@ -22,8 +22,8 @@ Keyboard kb; // Tastatur
PCSPK pcspk; // PC-Lautsprecher
// BumpAllocator allocator;
// LinkedListAllocator allocator;
TreeAllocator allocator;
LinkedListAllocator allocator;
// TreeAllocator allocator;
Scheduler scheduler;
unsigned int total_mem; // RAM total

View File

@ -36,8 +36,8 @@ extern Keyboard kb; // Tastatur
extern PCSPK pcspk; // PC-Lautsprecher
// extern BumpAllocator allocator;
// extern LinkedListAllocator allocator;
extern TreeAllocator allocator;
extern LinkedListAllocator allocator;
// extern TreeAllocator allocator;
extern Scheduler scheduler;
constexpr bool DEBUG = true;