Virtual memory and dlmalloc

This commit is contained in:
2025-08-14 01:49:04 +02:00
parent 95832bb3a7
commit b470fb03da
10 changed files with 6618 additions and 6 deletions

10
kernel/paging/paging.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef PAGING_PAGING_H_
#define PAGING_PAGING_H_
#include <stddef.h>
#include <stdint.h>
void paging_init(void);
size_t paging_virt2phys(size_t virtaddr);
#endif // PAGING_PAGING_H_