How can I monitor or visualize memory fragmentation of a delphi application?
相关问题
- Is there a Delphi 5 component that can handle .png
- What uses more memory in c++? An 2 ints or 2 funct
- Is there a way to install Delphi 2010 on Windows 2
- Is TWebBrowser dependant on IE version?
- Memory for python.exe on Windows 7 python 32 - Num
相关文章
- Why are memory addresses incremented by 4 in MIPS?
- Best way to implement MVVM bindings (View <-> V
- Is my heap fragmented
- Windows EventLog: How fast are operations with it?
- How to force Delphi compiler to display all hints
- Coloring cell background on firemonkey stringgrid
- HelpInsight documentation in Delphi 2007
- Can RTTI interrogate types from project code at de
Most Delphi applications use FastMM now, and if you have the source code version linked in you can use the FastMMUsageTracker.pas file which creates a separate window showing how memory is used updated every second or so.
I took the code in that file and created a version which logs to file, so that I could use it in a service, but for a desktop app that standard tracker will work well.