UNIX Programming and Technical

Q. What is validity fault?

A. If a process referring a page in the main memory whose valid bit is not set, it results in validity fault.
The valid bit is not set for those pages:
that are outside the virtual address space of a process,
that are the part of the virtual address space of the process but no physical address is assigned to it.

Read Solution (Total 0)

UNIX Other Question

Q. In what way the Fault Handlers and the Interrupt handlers are different?

A. Fault handlers are also an interrupt handler with an exception that the interrupt handlers cannot sleep. Fault handlers sleep in the context of the process that caused the memory fault. The fault refers to the running process and no arbitrary processes are put to sleep.
Q. What does the swapping system do if it identifies the illegal page for swapping?

A. If the disk block descriptor does not contain any record of the faulted page, then this causes the attempted memory reference is invalid and the kernel sends a Segmentation violation signal to the offending process. This happens when the swapping system identifies any invalid memory reference