mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
34 lines
527 B
ObjectPascal
34 lines
527 B
ObjectPascal
{%skiptarget=$nothread }
|
|
{ %OPT=-gh }
|
|
// Creating a suspended TThread and then destroying it should not cause memory leaks.
|
|
// Also, Execute() method should not be called.
|
|
|
|
{$ifdef fpc}{$mode objfpc}{$endif}
|
|
|
|
uses
|
|
{$ifdef unix}
|
|
cthreads,
|
|
{$endif}
|
|
SysUtils, Classes;
|
|
|
|
type
|
|
TMyThread = class(TThread)
|
|
procedure Execute; override;
|
|
end;
|
|
|
|
var
|
|
t: TThread;
|
|
Flag: Boolean;
|
|
|
|
procedure TMyThread.Execute;
|
|
begin
|
|
flag := True;
|
|
end;
|
|
|
|
begin
|
|
Flag := False;
|
|
t := TMyThread.Create(True);
|
|
t.Free;
|
|
Halt(ord(Flag));
|
|
end.
|