Subversion Repositories HelenOS-historic

Rev

Rev 1 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 5
Line 132... Line 132...
132
    pt[pte].frame_address = frame >> 12;
132
    pt[pte].frame_address = frame >> 12;
133
    pt[pte].present = !(flags & PAGE_NOT_PRESENT);
133
    pt[pte].present = !(flags & PAGE_NOT_PRESENT);
134
    pt[pte].page_cache_disable = !(flags & PAGE_CACHEABLE);
134
    pt[pte].page_cache_disable = !(flags & PAGE_CACHEABLE);
135
    pt[pte].uaccessible = (flags & PAGE_USER) != 0;
135
    pt[pte].uaccessible = (flags & PAGE_USER) != 0;
136
    pt[pte].writeable = (flags & PAGE_WRITE) != 0; 
136
    pt[pte].writeable = (flags & PAGE_WRITE) != 0; 
137
   
-
 
138
    tlb_invalidate(0);
-
 
139
}
137
}