Virtual Address Space and Physical Storage
The virtual address space of each process is much larger than the total
physical memory, random-access memory (RAM), available to all processes. To increase
the size of physical storage, the kernel uses the disk for additional storage.
The total amount of storage available to all executing processes is the sum of
the physical memory, RAM, and the free space on disk available to the
paging file, a disk file used to increase the amount of physical storage. Physical
storage and the virtual (logical) address space of each process are organized into
pages, units of memory, whose size depends on the host computer. For example, on
x86 computers the host page size is 4 kilobytes (K).
To maximize its flexibility in managing memory, the kernel can move pages of
physical memory to and from a paging file on disk. When a page is moved in
physical memory, the kernel updates the page maps of the affected processes. When
the kernel needs space in physical memory, it moves the least recently used pages
of physical memory to the paging file. Manipulation of physical memory by the
kernel is completely transparent to applications, which operate only in their
virtual address spaces.
The pages of a process's virtual address space can be in one of the following
states.
State
| Description
|
Free
| A free page is not currently accessible, but it is available to be committed
or reserved.
|
Reserved
| A reserved page is a block of the process's virtual address space that has
been set aside for future use. The process cannot access a reserved page, and
there is no physical storage associated with it. A reserved page reserves a range
of virtual addresses that cannot be used subsequently by other allocation
operations (that is, by functions such as malloc, LocalAlloc, and so on). A process can use the VirtualAlloc function to reserve pages of its address space and later to commit the
reserved pages. It can use the VirtualFree function to release them.
|
Committed
| A committed page is one for which physical storage (in memory or on disk) has
been allocated. It can be protected to allow either no access or read-only
access, or it can have read and write access. A process can use the VirtualAlloc function to allocate committed pages. The GlobalAlloc and LocalAlloc functions allocate committed pages with read-write access. A committed page
allocated by VirtualAlloc can be decommitted by the VirtualFree function, which releases the page's storage and changes the state of the page
to reserved.
|
- Software for developers
-
Delphi Components
.Net Components
Software for Android Developers
- More information resources
-
MegaDetailed.Net
Unix Manual Pages
Delphi Examples
- Databases for Amazon shops developers
-
Amazon Categories Database
Browse Nodes Database