Why does each process need its own page table?

I read about memory management techniques and wondered:

Why does each process need its own page table?

thanks.

+6
source share
1 answer

Why does each process need its own page table?

This is not true. But each address space needs its own page table, and on most operating systems each process has its own address space.

(The OS for IBM iSeries has only one page table, since it uses the "single address space" model.)

+7
source

Source: https://habr.com/ru/post/901341/


All Articles