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))
 
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to