diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-03-16 08:52:08 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-03-16 08:52:08 +0100 |
| commit | b67872907249bed3bad141fae97350959bffb009 (patch) | |
| tree | 72b940ed7ba66477efbd89866d7c8d482ab9cb09 /kernel/CMakeLists.txt | |
| parent | 4eb11660539e644e491ed5cf7e7918c3dc7baddd (diff) | |
| download | teachos-b67872907249bed3bad141fae97350959bffb009.tar.xz teachos-b67872907249bed3bad141fae97350959bffb009.zip | |
kernel/memory: rename free list allocator
It is not really a free list allocator, but rather a block list
allocator, since it contains both free and used blocks in the same list.
Diffstat (limited to 'kernel/CMakeLists.txt')
| -rw-r--r-- | kernel/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index 566ab9e..02e517c 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -11,7 +11,7 @@ add_executable("kernel" # Kernel Implementation "src/main.cpp" "src/memory/bitmap_allocator.cpp" - "src/memory/free_list_allocator.cpp" + "src/memory/block_list_allocator.cpp" "src/memory/operators.cpp" "src/memory.cpp" ) |
