Paging: Difference between revisions

From OSDev.wiki
Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content added Content deleted
(Very *basic* creation. Added to stubs.)
 
(Added to Category:Memory management.)
Line 9: Line 9:
==Enabling==
==Enabling==
Todo
Todo

[[Category:Memory management]]

Revision as of 20:37, 11 July 2007

This page is a stub.
You can help the wiki by accurately adding more contents to it.

Overview

Todo

Advantages\Disadvantages

Probably the most useful application of virtual addresses is memory protection. In a memory-protected environment, every process (executable) gets its own address space. To the executable, it looks like it is running alone on the system, no-one else there but the kernel. The bargain is that a misbehaved, malicious, or buggy executable cannot damage / corrupt other processes in the system. If the executable fails, the rest of the system keeps running instead of meeting the Guru Meditation, Blue Screen of Death, or whatever your system tells you when the system gets borked.

Enabling

Todo