From mboxrd@z Thu Jan 1 00:00:00 1970 MIME-Version: 1.0 In-Reply-To: References: <20100911163536.7348cd25@gmail.com> <243456116470afd150abf281a3f0f371@plug.quanstro.net> Date: Sat, 11 Sep 2010 19:32:23 -0700 Message-ID: From: ron minnich To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net> Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: [9fans] 9vx mk install chokes on gs Topicbox-Message-UUID: 54e3eb52-ead6-11e9-9d60-3106f5b1d025 diff -r 6ab31397d4b9 src/9vx/a/mem.h --- a/src/9vx/a/mem.h Sat Sep 11 23:09:14 2010 +0200 +++ b/src/9vx/a/mem.h Sat Sep 11 19:31:19 2010 -0700 @@ -41,7 +41,7 @@ #define VMAPSIZE (0x10000000-VPTSIZE-KMAPSIZE) #define UZERO 0 /* base of user address space */ #define UTZERO (UZERO+BY2PG) /* first address in user text */ -#define USTKTOP (0x4000000) /* byte just beyond user stack */ +#define USTKTOP (0x8000000) /* byte just beyond user stack */ #define USTKSIZE (16*1024*1024) /* size of user stack */ #define TSTKTOP (USTKTOP-USTKSIZE) /* end of new stack in sysexec */ #define TSTKSIZ 100 /* pages in new stack; limits exec args */ rminnich@xcpu2:~/src/plan9/vx32/src$ Fixed. gs builds. I'll do a full make to be sure there are no bad repercussions. ron