reformat
This commit is contained in:
@ -40,13 +40,13 @@ class Allocator {
|
|||||||
public:
|
public:
|
||||||
Allocator(Allocator& copy) = delete; // Verhindere Kopieren
|
Allocator(Allocator& copy) = delete; // Verhindere Kopieren
|
||||||
|
|
||||||
|
Allocator();
|
||||||
|
|
||||||
unsigned int heap_start;
|
unsigned int heap_start;
|
||||||
unsigned int heap_end;
|
unsigned int heap_end;
|
||||||
unsigned int heap_size;
|
unsigned int heap_size;
|
||||||
unsigned int initialized;
|
unsigned int initialized;
|
||||||
|
|
||||||
Allocator();
|
|
||||||
|
|
||||||
virtual void init() = 0;
|
virtual void init() = 0;
|
||||||
virtual void dump_free_memory() = 0;
|
virtual void dump_free_memory() = 0;
|
||||||
virtual void* alloc(unsigned int req_size) = 0;
|
virtual void* alloc(unsigned int req_size) = 0;
|
||||||
|
Reference in New Issue
Block a user