TLB: Fix serialization issues with the tlb entries and make the page table store the process, not the system.

--HG--
extra : convert_revision : 2421af11f62f60fb48faeee6bddadac2987df0e8
This commit is contained in:
Gabe Black
2007-10-25 19:04:44 -07:00
parent 0711f4f17a
commit fddfa71658
13 changed files with 106 additions and 120 deletions

View File

@@ -125,7 +125,7 @@ Process::Process(ProcessParams * params)
mmap_start = mmap_end = 0;
nxm_start = nxm_end = 0;
pTable = new PageTable(system);
pTable = new PageTable(this);
// other parameters will be initialized when the program is loaded
}