projects
/
pintos-anon
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f5eed4
)
Fix typo.
author
Ben Pfaff
<blp@cs.stanford.edu>
Wed, 9 Feb 2005 06:07:36 +0000
(06:07 +0000)
committer
Ben Pfaff
<blp@cs.stanford.edu>
Wed, 9 Feb 2005 06:07:36 +0000
(06:07 +0000)
doc/vm.texi
patch
|
blob
|
history
diff --git
a/doc/vm.texi
b/doc/vm.texi
index fe948207486f56800d8ae81010bc6ede91e1de3e..6eff4925c262759137396831a46dbde7bb462d4b 100644
(file)
--- a/
doc/vm.texi
+++ b/
doc/vm.texi
@@
-76,7
+76,7
@@
process would install its own page table into the machine. The page
table contained all the virtual-to-physical translations for the
process. Whenever the processor needed to look up a translation, it
consulted the page table. As long as the process only accessed
-memory that it
didn't own
, all was well. If the process accessed
+memory that it
owned
, all was well. If the process accessed
memory it didn't own, it ``page faulted'' and @func{page_fault}
terminated the process.