RE: Stack size
RE: Stack size
- Subject: RE: Stack size
- From: Brian Hook <email@hidden>
- Date: Wed, 26 Dec 2001 17:18:54 -0800
- Organization: Pyrogon, Inc.
>
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.
Brian