mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
Initialize memory allocator
This commit is contained in:
parent
cf1a4931d3
commit
d45671ccda
1 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
#include "console.h"
|
||||
#include "logger.h"
|
||||
#include "memory.h"
|
||||
#include "protected.h"
|
||||
#include "paging.h"
|
||||
#include "timer.h"
|
||||
|
@ -54,6 +55,8 @@ void main(const struct KernelMQ_Info *const kinfo_ptr)
|
|||
);
|
||||
}
|
||||
|
||||
memory_initialize(&kinfo);
|
||||
|
||||
protected_initialize();
|
||||
|
||||
// Set up a new post-relocate bootstrap pagetable so that
|
||||
|
|
Loading…
Reference in a new issue