pagetabel
Pagetabel, in English typically called a page table, is a data structure used by virtual memory systems to translate virtual addresses into physical addresses. In paging systems, a process uses virtual addresses that consist of a page number and an offset. The pagetabel provides, for each virtual page, the corresponding physical frame number and status information. If the page is resident in memory, the translation yields a frame number and the offset; if not, a page fault occurs and the operating system must fetch the page from secondary storage.
Most systems implement a per-process pagetabel stored in main memory. An entry in the pagetabel usually contains
Paging and pagetabellen enable virtual memory, process isolation, and memory protection, while also introducing overhead from