fpc/tests/webtbs/tw12942.pp
2016-07-13 15:21:23 +00:00

33 lines
438 B
ObjectPascal

{%skiptarget=$nothread }
{$mode objfpc}
{$s+}
uses
{$ifdef unix}
cthreads,
{$endif}
classes;
type
tmythread = class(tthread)
procedure execute; override;
end;
procedure tmythread.execute;
var
a: array[0..1024*1024-1] of byte;
begin
fillchar(a,sizeof(a),123);
end;
var
t: tmythread;
begin
t:=tmythread.create(false,1024*1024+128*1024);
t.waitfor;
if assigned(t.fatalexception) then
halt(1);
t.free;
end.