fpc/tests/test/tmt1.pp
Jonas Maebe e7c94f7e5c - removed obsolete {$threading on} directive
git-svn-id: trunk@8264 -
2007-08-11 20:58:20 +00:00

58 lines
892 B
ObjectPascal

{ %version=1.1 }
{$mode objfpc}
uses
sysutils
{$ifdef unix}
,cthreads
{$endif}
;
const
{$ifdef cpuarm}
{$define slowcpu}
{$endif cpuarm}
{$ifdef slowcpu}
threadcount = 40;
stringlen = 2000;
{$else slowcpu}
threadcount = 100;
stringlen = 10000;
{$endif slowcpu}
var
finished : longint;
threadvar
thri : longint;
function f(p : pointer) : ptrint;
var
s : ansistring;
begin
writeln('thread ',longint(p),' started');
thri:=0;
while (thri<stringlen) do
begin
s:=s+'1';
inc(thri);
end;
writeln('thread ',longint(p),' finished');
InterLockedIncrement(finished);
f:=0;
end;
var
i : ptrint;
begin
finished:=0;
for i:=1 to threadcount do
BeginThread({$ifdef fpc}@{$endif}f,pointer(i));
while finished<threadcount do
{$ifdef wince}sleep(10){$endif};
writeln(finished);
end.