Forum Discussion
Altera_Forum
Honored Contributor
15 years agoI am not sure if this helps. I had a similar problem when using xpdf. The reason was that too much memory was allocated statically in a function. This memory is put on the heap where we have only about 4k default. eg "function(){buf[0x100000]}" will use 1M heap space. To avoid this make the memory static "function(){static buf[0x100000]}" or use malloc. In my case though uClinux crashed completely and I used nommu.