04-08-2014 02:12 PM
I have been using the Resource Tracking option to track down memory leaks. But I recently noticed couple of memory allocations using CA_AllocMemory() that were never freed. It didn't show up in Resource Tracking though. So I was wondering if it tracks only memory allocation using malloc/calloc or do I need to enable some option. I had the Options->Build Options->Debugging Level set to 'Extended'.
Solved! Go to Solution.
04-11-2014 05:06 AM
Hello unnikrishnan!
The bahaviour you are seing is expected, as the Resource Tracking window doesn't track individual memory allocations of CA_AllocMemory(). You can check the CVI help topic for Resource Tracking to read about the ActiveX objects that are tracked.
This link might help:
http://zone.ni.com/reference/en-XX/help/370051V-01/cvi/usermanual/resourcetrackingresources/
04-15-2014 09:06 AM
Thank you...