I have some Delphi 6 code that allocates memory using New and frees it using Dispose.I have stepped through the code and see that both New and Dispose actually do get called.
Working on a project which uses factories to construct objects. I keep the pointers to the factory functions in vars globally (bad I know) and register them on initialization.
I\'m getting this error, \"FastMM4 cannot install since memory has already been allocated through the default memory manager\". I\'m using ASProtect and Eurekalog for my Delphi 7 application (there\'s
I use FastMM in my Delph开发者_如何学JAVAi application to trace memory leaking especially in FullDebugMode.With the new release of Delphi XE2, can we use FastMM as the memory manager?Can FastMM work w
I\'m using FastMM开发者_StackOverflow社区 4.97 in my application in Delphi5. Everything works well, if I run my application from the IDE with an intentional leak for test purposes. I get proper notic
With FastMM4 one can easily register a leaked pointer, but not a leaked string. Apparently the @ operator applied to a string is not really giving us the whole string, nor is PChar(string); What can I
I\'m sitting with an OpenGL 3.2 application in Delphi 2009. When using FastMM 4.97 with FullDebugMode defined the UBOs does not get their data properly. With FullDebugMode undefined everything works l
I had an issue recently (see my last question) that led me to take a closer look at the memory management in my Delphi application. After my first exploration, I have two questions.
How could I get the total amount of memory, that allocated by FastMM? I\'ve tried that:开发者_如何学Go
After spending a week of my time running using FastMM on my project file, I now have completely gone through my program and to best of my knowledge remove all but 3 error messages raised by FastMM497.