"Eric" <[EMAIL PROTECTED]> wrote in message news:32413@palm-dev-forum... > > I get this message from POSE, "The application is getting close to > overflowing the stack". > I think that mean my application use up most stack. Do the memory get > from MemPtrNew also include in this stack? What is the stack size of a > application? The default stack size on PalmOS varies from device to device, but is in the 2K to 4K range. MemPtr and MemHandle allocations are from the heap, not the stack. The stack would be the sum of all your local variables in the current path of execution. Having large structures or buffers would generally be a problem. -- Ben Combee Veriprise Wireless <http://www.veriprise.com> -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
