X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=doc%2Fvm.texi;h=6eff4925c262759137396831a46dbde7bb462d4b;hb=49f91ea15da93b7df4b946d42c70e09e740f3c06;hp=90d407d2bc5edd7bd04c7b35ca227488224f89c5;hpb=87762f2bed6156b9fd233f4c20d5fdd0012634f2;p=pintos-anon diff --git a/doc/vm.texi b/doc/vm.texi index 90d407d..6eff492 100644 --- a/doc/vm.texi +++ b/doc/vm.texi @@ -38,9 +38,6 @@ introduced in this project. You will continue to handle Pintos disks and file systems the same way you did in the previous assignment (@pxref{Using the File System}). -Your submission should define @code{THREAD_JOIN_IMPLEMENTED} in -@file{constants.h} (@pxref{Conditional Compilation}). - @menu * VM Design:: * Page Faults:: @@ -79,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.