summaryrefslogtreecommitdiffstats
path: root/sys/kern
diff options
context:
space:
mode:
authordyson <dyson@FreeBSD.org>1996-06-11 23:50:48 +0000
committerdyson <dyson@FreeBSD.org>1996-06-11 23:50:48 +0000
commit1ad26364cdbfce3d346200a3d9879eea363f25ba (patch)
treef752703133326310c68a61dcc092678a29532f54 /sys/kern
parent22732249c736c570de134e99f0f79bf28c469a61 (diff)
downloadFreeBSD-src-1ad26364cdbfce3d346200a3d9879eea363f25ba.zip
FreeBSD-src-1ad26364cdbfce3d346200a3d9879eea363f25ba.tar.gz
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.
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/init_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c
index eb9f7f8..2a9984e 100644
--- a/sys/kern/init_main.c
+++ b/sys/kern/init_main.c
@@ -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 */
OpenPOWER on IntegriCloud