Paging
- Pype.Clicker
- Member
- Posts: 5964
- Joined: Wed Oct 18, 2006 2:31 am
- Location: In a galaxy, far, far away
- Contact:
Re:Paging
you can have a USER=1 PTE in a USER=0 PDE, if that's what you mean. However, the access control that applies is
so as soon as one of the P*E entries has USER=0, you cannot access the page from userland.
Code: Select all
if (CPL=3)
if(!PTE.USER || !PDE.USER) throw new PageFault;