静的にまたは動的にリンクされたdllでメモリリークを検出する方法がわかりません。私はDLL内のリークを検出したいだけで、DLLとアプリケーションの間でメモリマネージャを共有したくありません。さらに、dllががdllでメモリリークを検出するようにFastMMを構成する方法
マイサンプルDLLは、次のようになりランタイムパッケージとリンク次のとおりです。
library dll;
uses
fastmm4,
System.SysUtils,
System.Classes;
{$R *.res}
procedure MyInit; stdcall;
Begin
TObject.Create;
End;
exports MyInit;
begin
end.
アプリケーションDPR:
program app;
uses
//fastmm4,
Vcl.Forms,
main in 'main.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
注:私は私が検出できるよりもfastmm4を、コメントを解除した場合アプリケーションによって引き起こされるmemleak(TStringList.Create)が、DLLのリークではありません。
とアプリケーション本体に:
unit main;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
type
TForm1 = class(TForm)
procedure FormCreate(Sender: TObject);
private
LDLLHandle: HModule;
LShowProc: TProcedure;
end;
var
Form1: TForm1;
{$ifdef static}
procedure MyInit; stdcall; external 'dll.dll';
{$endif}
implementation
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
begin
TStringList.Create;
{$ifdef static}
MyInit;
{$else}
LDLLHandle := LoadLibrary('dll.dll');
if LDLLHandle <> 0 then
begin
try
LShowProc := GetProcAddress(LDLLHandle, 'MyInit');
if Assigned(LShowProc) then
LShowProc;
finally
FreeLibrary(LDLLHandle);
end;
end;
{$endif}
end;
end.
私はFreeLibraryのが呼ばれ、またはプログラム終了時に、DLLが静的にロードされている場合、何も起こりませんされたレポートを生成するためにFastMMから期待しています。私は、さらにちょうどFullDebugModeとClearLogFileOnStartupを設定し、FastMM_FullDebugMode.dllは、出力ディレクトリにあるFastMM4Options.inc
で
。
私はrepository on githubを作成しました。私は何が欠けていますか?
奇妙な...レポをクローンして実行し、xe3で動作しましたか? – balazs
自分のプロジェクトをビルドしたときに私は再作成できませんでした。しかし、私は自分のfastmmオプションを使用しました。しかし、私はあなたのプロジェクトを取り戻し、問題を解決しました。 –