From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: Date: Sat, 17 Mar 2007 12:19:52 -0400 From: "Russ Cox" To: "Fans of the OS Plan 9 from Bell Labs" <9fans@cse.psu.edu> Subject: Re: [9fans] Alef - run time error In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: Topicbox-Message-UUID: 27bf2618-ead2-11e9-9d60-3106f5b1d025 On 3/17/07, lucio@proxima.alt.za wrote: > These values are declared in the library (alef/lib/386/run.h) source code: > > /* Runtime data structures */ > > enum > { > Ptab = 0x7fff5000, /* Private stack */ > Execstk = 0x7f001000, /* Exec stack linkage area */ > }; > > The runtime fails: > > 8.sieve 6302: suicide: sys: trap: fault write addr=0x7fff5000 pc=0x00001c2d > > so I presume that new values and hopefully not major surgery, are > called for. Can anyone help? Also, are there analogous values in the > other platforms (power, sparc, mips) that require attention? the pc address space got bigger in 2005 so that programs could use more than 2gb of memory. the top of the stack is now 0xdffff000 instead of 0x7ffff000, so if you s/0x7/0xd/ you will probably be okay. it would be even better if _main looked at its stack pointer and anded off some bits, so that those weren't hard-coded. power didn't move, and mips and sparc aren't in the main tree anymore. russ