We need to have basic memory allocation in the kernel. We will not do malloc but only memory arenas. When working on malloc for stdlib c later, it will be implemented with different memory arenas. - [ ] Implement a really basic dumb allocator in the kernel. - [ ] Implement a memory arena system. (no virtual memory yet) - [ ] Implement a stack memory arena. - [ ] Implement unit tests.
We need to have basic memory allocation in the kernel.
We will not do malloc but only memory arenas.
When working on malloc for stdlib c later, it will be implemented with different memory arenas.