mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
30 lines
349 B
ObjectPascal
30 lines
349 B
ObjectPascal
{%skiptarget=$nothread }
|
|
{$mode objfpc}
|
|
{$H+}
|
|
|
|
uses
|
|
{$ifdef unix}
|
|
cthreads,
|
|
{$endif}
|
|
classes
|
|
;
|
|
|
|
type
|
|
tthread1 = class(tthread)
|
|
public
|
|
procedure execute; override;
|
|
end;
|
|
|
|
procedure tthread1.execute;
|
|
begin
|
|
end;
|
|
|
|
var
|
|
thread1: tthread1;
|
|
begin
|
|
thread1 := tthread1.create(true);
|
|
thread1.start;
|
|
thread1.waitfor;
|
|
thread1.free;
|
|
end.
|