svn commit: r223164 - head/sys/kern

Konstantin Belousov kib at FreeBSD.org
Thu Jun 16 21:59:16 UTC 2011


Author: kib
Date: Thu Jun 16 21:59:16 2011
New Revision: 223164
URL: http://svn.freebsd.org/changeset/base/223164

Log:
  Fix silly typo that resulted in the a.out process stack to end at
  ~200MB instead of 3GB on amd64.

Modified:
  head/sys/kern/imgact_aout.c

Modified: head/sys/kern/imgact_aout.c
==============================================================================
--- head/sys/kern/imgact_aout.c	Thu Jun 16 21:50:28 2011	(r223163)
+++ head/sys/kern/imgact_aout.c	Thu Jun 16 21:59:16 2011	(r223164)
@@ -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))
 


More information about the svn-src-head mailing list