Repository URL to install this package:
|
Version:
3.2.0 ▾
|
{ %SKIPTARGET=$nothread }
program terecs20;
{$mode objfpc}
{$modeswitch advancedrecords}
{$ifdef unix}
uses
cthreads;
{$endif}
type
TTest = record
public class threadvar
Test: LongInt;
end;
function TestFunc(aData: Pointer): PtrInt;
var
e: PRTLEvent;
begin
e := PRTLEvent(aData);
TTest.Test := 42;
RTLeventSetEvent(e);
Result := 0;
end;
var
e: PRTLEvent;
begin
TTest.Test := 21;
e := RTLEventCreate;
BeginThread(@TestFunc, e);
RTLeventWaitFor(e);
if TTest.Test <> 21 then
Halt(1);
Writeln('Ok');
end.