Hello Jon,
I think the problem you have faced is caused by the fact that the source files were modified after the modules were compiled and the debug information was generated.
Please recompile your application, make sure that AQtime has reloaded the modules and read the new debug information successfully, then profile your application again. Let me know if AQtime does not display correct source code lines after that.
| I ran TaskManager on this same App and it did NOT indicate any memory leak. |
Let me quote the
Allocation Profiler - Overview Help topic regarding this matter:
| The amount of allocated memory displayed for your application by AQtime may differ from the amount of memory shown in the Task Manager. This happens because AQtime displays the memory that is currently allocated by the application’s memory manager for all live objects being profiled (the Allocation profiler traces only those objects whose classes are included in profiling areas). In the Task Manager window, you see the memory size that is allocated by the operating system’s memory manager for the application. Some part of this memory may not be used at the moment, but it is still allocated by the application’s memory manager (for instance, for future use). In certain cases, deallocated memory blocks may not be returned to the operating system’s memory manager, so the operating system “thinks” that these blocks are still being allocated by the application. There are also other possible reasons. So, the difference you see is caused by the peculiarities of memory management in the operating system and in the application. |