![]() | This article includes alist of references,related reading, orexternal links,but its sources remain unclear because it lacksinline citations. Please helpimprove this article byintroducing more precise citations.(June 2009) (Learn how and when to remove this message) |
Incomputeroperating systems,demand paging (as opposed toanticipatory paging) is a method ofvirtual memory management. In a system that uses demand paging, the operating system copies a diskpage into physical memory only when an attempt is made to access it and that page is not already in memory (i.e., if apage fault occurs). It follows that aprocess begins execution with none of its pages in physical memory, and triggers many page faults until most of itsworking set of pages are present in physical memory. This is an example of alazy loading technique.
Demand paging only brings pages into memory when an executing process demands them. This is often referred to aslazy loading, as only those pages demanded by the process are swapped fromsecondary storage tomain memory. Contrast this to pure swapping, where all memory for a process is swapped from secondary storage to main memory when the process starts up or resumes execution.
Commonly, to achieve this process amemory management unit is used. The memory management unit mapslogical memory tophysical memory. Entries in the memory management unit include a bit that indicates whether a page is valid or invalid. A valid page is one that currently resides in main memory. An invalid page is one that currently resides in secondary memory. When a process tries to access a page, the following steps are generally followed:
Demand paging, as opposed to loading all pages immediately: