mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 17:28:05 +02:00
22 lines
425 B
ObjectPascal
22 lines
425 B
ObjectPascal
{%skiptarget=$nothread }
|
|
{ %OPT=-gl -gh }
|
|
program t3;
|
|
|
|
uses
|
|
{$ifdef unix}
|
|
cthreads,
|
|
{$endif}
|
|
Sysutils,uw6767;
|
|
|
|
|
|
var
|
|
CheckThread : TCheckConnThread;
|
|
begin
|
|
HaltOnNotReleased := true;
|
|
CheckThread := TCheckConnThread.Create(false);
|
|
CheckThread.Terminate;
|
|
{ not really clean, but waitfor is not possible since the thread may }
|
|
{ already have freed itself }
|
|
sleep(500);
|
|
end.
|