PDA

View Full Version : stack size creating problem???


vikramb
06-20-2002, 07:07 AM
hi
I am developing VOIP based application for BREW enabled handheld devices. This application is very big in size (dll size is 497 KB) and it involves lot of nested function calls. Also the strucutures are very big. BREW says that stack size is limted to 500 bytes. I think because of this i am facing problems while executing my application on emulator. simple ISHELL_CreateInstance() call is failing and its returning non std value. How to increase stack size??? I think any real worl application invloves lot of function calls and will have big strucutres. Is brew capable handling this??Then why i am facing problems???

-Vikram

Kevin
06-27-2002, 03:24 PM
Brew will not impose Stack limitations on the Emulator. You can adjust the heap size using the Device Configurator. You will need to be very careful with your stack when you move to an actual device.

vikramb
06-27-2002, 10:15 PM
thats great for me atleast i can try my program on emulator. Right now i am not worried about actual devices so its good if emulator doesnt impose any stack restriction.
-Vikram