UNIX Programming and Technical

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.

Read Solution (Total 0)

UNIX Other Question

Q. At what mode the fault handler executes?

A. At the Kernel Mode.
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