Date: Sun, 25 Jul 1999 11:29:45 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Martin Str|mberg cc: djgpp AT delorie DOT com, DJ Delorie , Charles Sandmann Subject: Re: Fixed stack size? In-Reply-To: <7na6mg$77h$2@news.luth.se> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 23 Jul 1999, Martin Str|mberg wrote: > Why is the stack size fixed? Can't it be allocated dynamically? I'm not sure I understand all the subtle aspects of this, but one problem is that the stack sits between .bss and the heap, so expanding it would require to move the heap around. (The heap clearly requires expanding, so it's placed last.) DJ, Charles, can you comment on this?