mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-09 21:48:19 +02:00
40 lines
942 B
ObjectPascal
40 lines
942 B
ObjectPascal
{
|
|
*****************************************************************************
|
|
This file is part of the Lazarus Component Library (LCL)
|
|
|
|
See the file COPYING.LCL, included in this distribution,
|
|
for details about the license.
|
|
*****************************************************************************
|
|
|
|
This program is used by the TAsyncProcess test.
|
|
It runs endless and writes lines.
|
|
}
|
|
program test5_1worker;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
var
|
|
j: Integer;
|
|
i: Integer;
|
|
fs: TFileStream;
|
|
s: String;
|
|
begin
|
|
j:=0;
|
|
while true do begin
|
|
s:=FormatDateTime('NN:SS.ZZZZ',Now);
|
|
writeln(s,' .............................................................');
|
|
s:=s+LineEnding;
|
|
fs:=TFileStream.Create(UTF8ToSys('worker.log'),fmCreate);
|
|
fs.Position:=fs.Size;
|
|
fs.Write(s[1],length(s));
|
|
fs.Free;
|
|
for i:=0 to 10000000 do begin
|
|
if (i mod 15000)=0 then inc(j);
|
|
end;
|
|
end;
|
|
end.
|
|
|