Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / tests / webtbs / tw6767.pp
Size: Mime:
{%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.