"geeta more" <[EMAIL PROTECTED]> wrote in message news:66713@palm-dev-forum... > > Hi All, > Is there any way to increase stack size for an > application? I am using codewarrior 6. My code gives a > stack overflow mesage on emulator. Is this due to too > much nesting of calls or can there be some other > reason?
You can adjust the initial stack space in Constructor -- it is one of the application resources set at the bottom of the resource list. However, stack space is allocated out of your global memory, so its a trade-off. Running out of stack usually means you've use too many large local variables in your code or you're using a out-of-control recursive routine. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
