Re: Stack size
Re: Stack size
- Subject: Re: Stack size
- From: Hampus Edvardsson <email@hidden>
- Date: Thu, 27 Dec 2001 13:43:11 +0100
Yes, unfortunately that's the problem, so using malloc won't work.
// Hampus Edvardsson
On torsdag, december 27, 2001, at 02:18 , Brian Hook wrote:
Why don't you just call malloc() instead?
For some applications, memory fragmentation is a serious concern, so
allocating things on the stack (either directly or with alloca()) can
seriously alleviate that problem without having to resort to, say,
managing scratch heaps.