如何在delphi Expert中使用FastMM(dll)
我制作了delphi Expert(dll - delphi 5)。我想测试我的 Expert 是否存在内存泄漏。如何使用 FastMM 作为 dll Expert?是否可以使用 fastmm(对于我的 dll)而不是标准内存管理器?
I made delphi expert(dll - delphi 5). I want to test my expert for memory leak.How to use FastMM for dll expert? Is it possible to use fastmm(for my dll) instead of the standard memory manager?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我强烈建议您在 IDE 地址空间中运行的任何 DLL 中使用与相应版本的 IDE 使用的内存管理器完全相同的内存管理器。疯狂则相反。
I emphatically advise you to use in any DLL running in the IDE's address space the very same memory manager used by the respective version of the IDE. Madness lies the other way.
我怀疑你不能在Delphi 5 IDE Expert中使用FastMM,因为它已经使用了ShareMem(BORLNDMM.DLL)。
I suspect that you can't use FastMM in a Delphi 5 IDE expert, because it already uses ShareMem (BORLNDMM.DLL).