1

move logger

This commit is contained in:
2022-07-24 21:49:04 +02:00
parent 40108cdacc
commit 0ced077122
17 changed files with 22 additions and 21 deletions

View File

@ -13,7 +13,7 @@
#define BumpAllocator_include__
#include "kernel/Allocator.h"
#include "user/lib/Logger.h"
#include "user/lib/utility/Logger.h"
class BumpAllocator : Allocator {
private:

View File

@ -11,7 +11,7 @@
#include "kernel/allocator/LinkedListAllocator.h"
#include "kernel/Globals.h"
#include "user/lib/Logger.h"
#include "user/lib/utility/Logger.h"
// I don't order the list by size so that the block order corresponds to the location in memory
// Then I can easily merge adjacent free blocks by finding the previous block without looking at

View File

@ -14,7 +14,7 @@
#include "kernel/Allocator.h"
#include "lib/SpinLock.h"
#include "user/lib/Logger.h"
#include "user/lib/utility/Logger.h"
// Format eines freien Blocks, 4 + 4 + 4 Byte
typedef struct free_block {

View File

@ -2,7 +2,7 @@
#define TreeAllocator_include__
#include "kernel/Allocator.h"
#include "user/lib/Logger.h"
#include "user/lib/utility/Logger.h"
// I can't imagine that this is fast with all the tree logic?