Question

Does every process have its own page table or does it simply add it's page entries into one big page table?

Was it helpful?

Solution

Yes every process has its own pagetables. They might be shared with the parent process(copy on write) or with other processes(shared memory). But in general every process has its own.

OTHER TIPS

Yes, unless you use an inverted page table see this answer. Because an inverted page table is global, each entry must also contain which process it belongs to.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top