Change the symbol name used in the last commit from USRSTACK to

VM_MAXUSER_ADDRESS.  Even though they are the same, the new name
is more descriptive.
This commit is contained in:
John Dyson 1996-06-11 23:50:48 +00:00
parent 8a1e5ea8c6
commit 47dcd2e56c

View File

@ -386,7 +386,7 @@ proc0_init(dummy)
vmspace0.vm_refcnt = 1;
pmap_pinit(&vmspace0.vm_pmap);
vm_map_init(&vmspace0.vm_map, round_page(VM_MIN_ADDRESS),
trunc_page(USRSTACK), TRUE);
trunc_page(VM_MAXUSER_ADDRESS), TRUE);
vmspace0.vm_map.pmap = &vmspace0.vm_pmap;
p->p_addr = proc0paddr; /* XXX */