summaryrefslogtreecommitdiff
path: root/Kernel/MemoryManager.h
AgeCommit message (Expand)Author
2018-11-01Move Region and Subregion out of Process and make them free classes.Andreas Kling
2018-11-01Process now maps regions immediately when they are allocated.Andreas Kling
2018-11-01Remove some unused MM functions.Andreas Kling
2018-11-01Implement address validation by querying the task's page directory.Andreas Kling
2018-11-01Fix /proc/PID/stack in the new per-process page directory world.Andreas Kling
2018-11-01More work on per-process page directories. It basically works now!Andreas Kling
2018-11-01Give each task its own page directory.Andreas Kling
2018-10-31Add a kmalloc_eternal() for things that will never be destroyed.Andreas Kling
2018-10-28Add zone dump to /proc/mm.Andreas Kling
2018-10-28Add /proc/mm and a /bin/mm utility that just dumps it.Andreas Kling
2018-10-27Implement loading of linked ELF executables.Andreas Kling
2018-10-26Add a simple /proc/mounts that enumerates the current VFS mounts.Andreas Kling
2018-10-23Teach MM to flush individual TLB entries only.Andreas Kling
2018-10-23Flush the TLB after modifying page tables.Andreas Kling
2018-10-23Lots of hacking:Andreas Kling
2018-10-22Launching an arbitrary ELF executable from disk works! :^)Andreas Kling
2018-10-21Protect the first 4 KB of memory.Andreas Kling
2018-10-18Add Regions concept to Task.Andreas Kling
2018-10-18More paging stuff.Andreas Kling
2018-10-17Add basic paging. Only identity maps the bottom 4MB as a start.Andreas Kling