diff --git a/c_os/kernel/Allocator.h b/c_os/kernel/Allocator.h index 89d4a27..b33978b 100755 --- a/c_os/kernel/Allocator.h +++ b/c_os/kernel/Allocator.h @@ -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;