UNIX Programming and Technical Logical Reasoning Mathematical Reasoning

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

Read Solution (Total 0)

UNIX Other Question

Q. What do you mean by the protection fault?

A. Protection fault refers to the process accessing the pages, which do not have the access permission. A process also incur the protection fault when it attempts to write a page whose copy on write bit was set during the fork() system call.
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.