summaryrefslogtreecommitdiff
path: root/src/kernel/arch/i386/pagedir.c
AgeCommit message (Collapse)Author
2021-07-26fork() pt 1: cloning process memorydzwdz
2021-07-22implement the debuglog() syscalldzwdz
2021-07-20rename pagedir_use() to pagedir_switch()dzwdz
imo "use" was slightly misleading
2021-07-20only enable paging when jumping into ring 0dzwdz
The kernel can't use the limited paging tables of user processes. Alternatively, sysenter could accept a parameter with a new cr3. That would allow/require using paging in the kernel - so I'll switch to it later, but I want to get other stuff done first.
2021-07-19very basic pagingdzwdz