UNIX Programming and Technical

Q. For which kind of fault the page is checked first?

A. The page is first checked for the validity fault, as soon as it is found that the page is invalid (valid bit is clear), the validity fault handler returns immediately, and the process incur the validity page fault. Kernel handles the validity fault and the process will incur the protection fault if any one is present.

Read Solution (Total 0)

UNIX Other Question

Q. How the Kernel handles the copy on write bit of a page, when the bit is set?

A. In situations like, where the copy on write bit of a page is set and that page is shared by more than one process, the Kernel allocates new page and copies the content to the new page and the other processes retain their references to the old page. After copying the Kernel updates the page table entry with the new page number
Q. In what way the protection fault handler concludes?

A. After finishing the execution of the fault handler, it sets the modify and protection bits and clears the copy on write bit. It recalculates the process-priority and checks for signals.