Did you relink a new blackbox.exe file for the test?
Module Kernel is part of the linked executable.
- Josef
Mobatec wrote:Oh, sorry, I didn't notice that after 10 comments I had to click to the next page![]()
Yes, Josef, I relink new blackbox.exe for testing.
Josef Templ wrote:The only other idea that I currently have is to avoid the large stack by allocating large data structures on the heap.
This would give you much more memory but it is of course a change in your model loader.
Mobatec wrote:Josef Templ wrote:The only other idea that I currently have is to avoid the large stack by allocating large data structures on the heap.
This would give you much more memory but it is of course a change in your model loader.
Hi Josef,
Any hints on how to do this?
PROCEDURE LoadSomething(...);
VAR arr: ARRAY 100000 OF REAL;
BEGIN ...
PROCEDURE LoadSomething(...);
VAR arr: POINTER TO ARRAY OF REAL;
BEGIN arraysize := ...; NEW(arr, arraysize);
Users browsing this forum: No registered users and 2 guests