680c680
< process->pTable->allocate(process->mmap_end, diff);
---
> process->allocateMem(process->mmap_end, diff);
694c694,695
< process->pTable->allocate(start + old_length, new_length - old_length);
---
> process->allocateMem(start + old_length,
> new_length - old_length);
701,702c702
< process->pTable->deallocate(start + new_length, old_length -
< new_length);
---
> process->pTable->unmap(start + new_length, old_length - new_length);
1068c1068
< p->pTable->allocate(start, length, clobber);
---
> p->allocateMem(start, length, clobber);