1
This commit is contained in:
2022-07-24 16:46:02 +02:00
parent 3546cba4ea
commit a15e1d9fd4

View File

@ -40,13 +40,13 @@ class Allocator {
public:
Allocator(Allocator& copy) = delete; // Verhindere Kopieren
Allocator();
unsigned int heap_start;
unsigned int heap_end;
unsigned int heap_size;
unsigned int initialized;
Allocator();
virtual void init() = 0;
virtual void dump_free_memory() = 0;
virtual void* alloc(unsigned int req_size) = 0;