Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pg.289][Typo] contageous -> contiguous #153

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions book_src/Operating Systems From 0 to 1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16053,12 +16053,12 @@ space is called virtual memory.

Virtual Memory

Physical memory is a contagious memory locations that has a
Physical memory is a contiguous memory locations that has a
simple mapping between a physical memory address and its
corresponding location in memory, decoded by memory controller.
On the other hand, *virtual memory* does not have direct mapping
between a memory address and the corresponding physical memory
location, even though it appears contagious from the view of an
location, even though it appears contiguous from the view of an
userspace program. Instead, virtual memory address is translated
by OS into an actual physical memory address. For that reason,
even addresses appear next to each other in virtual memory space,
Expand Down