1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-01 12:19:28 +00:00

Fix silly typo that resulted in the a.out process stack to end at

~200MB instead of 3GB on amd64.
This commit is contained in:
Konstantin Belousov 2011-06-16 21:59:16 +00:00
parent c5aef5377c
commit 5a888c066f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=223164

View File

@ -103,7 +103,7 @@ struct sysentvec aout_sysvec = {
#elif defined(__amd64__)
#define AOUT32_USRSTACK 0xbfc0000
#define AOUT32_USRSTACK 0xbfc00000
#define AOUT32_PS_STRINGS \
(AOUT32_USRSTACK - sizeof(struct freebsd32_ps_strings))