Hi,
I'm using a code like:
short * x;
x=(short*) calloc(0xff0,sizeof(short)*8);
in my program. I found, when hitting the "Restart" Button in CCS the heap pointer is not reset, but counts from already allocated memory. Is there any way to reset the heap-pointer instead of reloading the whole program?
You can easily see, that the pointer x is incremented each time I hit restart-Button of Debugger in CCS (EVM5515) until sometime the heap is full.
Micky