How to monitor or visualize memory fragmentation of a delphi application
Asked Answered
M

1

12

How can I monitor or visualize memory fragmentation of a delphi application?

Muntin answered 9/11, 2009 at 15:15 Comment(0)
T
23

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.

Trask answered 9/11, 2009 at 15:51 Comment(1)
@Trask FastMMUsageTracker.pas is all I need. Thanks for the quick response.Muntin

© 2022 - 2024 — McMap. All rights reserved.