Tagged Questions

4
votes
2answers
175 views

Getting a longer stacktrace from FastMM?

When FastMM logs a memory leak it includes a stacktrace going back 9 calls. Problem is that the stacktrace is too general to locate the problem easily. The last function call in th …
3
votes
4answers
205 views

Delphi: memoryleak in IdStack, but who uses IdStack?

FAstMM reports a memoryleak from a TIdCriticalSection in IdStack.pas. I understand this is a intentional leak, that is documented in the code. What I do not understand, is why IdS …
2
votes
3answers
218 views

FastMM4 says “The block header has been corrupted”

Hi. I had this nasty bug that disappeared in the past but now after quite some time it returned. I have two TSam objects (derived from TPersistent) created and loaded into an TAsm …
1
vote
1answer
91 views

FastMM svn version

I downloaded FastMM through an svn checkout. (instead of stable packaged version) Can I use it (or is it safe to use) in my release builds? I'm asking this as a seperate questi …
1
vote
2answers
220 views

Delphi - structures’ strings not being freed [FastMM manager]

If I declare PSomeStruct = ^TSomeStruct; TSomeStruct = record s1 : string; end; and I run the following code: var p: PSomeStruct; begin new(p); p^.s1:= 'something bl …
1
vote
2answers
587 views

delphi - terminate all the threads (TThread) on closing application

My application is a tcp/ip server, with main thread created only once & listening all the time. When new client connects, the main thread creates the new thread of TClientThrea …
3
votes
4answers
517 views

How to get a stack trace from FastMM

I've noticed in this post that you can get stack trace out of FastMM to show what appears to be where the object was allocated. http://stackoverflow.com/questions/271850/how-to-tr …
1
vote
4answers
225 views

How list all instantiated objects?

How can I list all instantiated objects in all application, using FASTMM4 or default memory manager?
1
vote
4answers
380 views

How can I use FastMM4 memory leak reporting in a Service?

Does the same technique which FastMM4 for Delphi provides to report memory leaks to a detailed file work if the application runs as service? Of course the best practice would be to …
1
vote
7answers
999 views

How to track down tricky memory leak with fastMM?

After upgrading a project from Delphi 2007 to Delphi 2009 I'm getting an Unknown memory leak, so far I've been tryin to track it down using fastMM, here is what fastMM stack trace …
3
votes
6answers
985 views

How to get the Memory Used by a Delphi Program.

I know how to get the System memory use using GlobalMemoryStatusEx, but that tells me the what the entire OS is using. I really want my program to report how much memory it alone …
6
votes
8answers
1k views

Why the Excess Memory for Strings in Delphi?

I'm reading in a large text file with 1.4 million lines that is 24 MB in size (average 17 characters a line). I'm using Delphi 2009 and the file is ANSI but gets converted to Unic …
2
votes
2answers
471 views

FreeMM vs ShareMem

Hi, We have a lot of dll-libraries written in both delphi and c++ builder, and use sharemem and borlndmm.dll. An aligment-issue in a 3thparty library forces us over to the new me …