0
1.1kviews
Explain any one application of linked with an example
1 Answer
| written 7.3 years ago by |
When a process references a particular virtual address, the appropriate entry in its page table is inspected to determine in which physical frame the page resides. When a process references a virtual address not yet in a frame, a page fault occurs and a frame is allocated in physical memory.

For Example of frame management consider two functions ; alloc_frame and free_frame. The alloc_frame and free_frame functions employ a linked list to maintain the frames that are available to be allocated.