mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-24 12:49:18 +02:00
* correct termination of thread
This commit is contained in:
parent
752beef0dd
commit
23fd809891
@ -20,7 +20,7 @@ procedure TMyThread.Execute;
|
|||||||
begin
|
begin
|
||||||
repeat
|
repeat
|
||||||
write(ch);
|
write(ch);
|
||||||
until false;
|
until Terminated;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
@ -43,8 +43,12 @@ begin
|
|||||||
t2.Destroy;
|
t2.Destroy;
|
||||||
t1.Destroy;
|
t1.Destroy;
|
||||||
end.
|
end.
|
||||||
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.3 2002-09-07 15:15:28 peter
|
Revision 1.4 2002-09-07 21:03:37 carl
|
||||||
|
* correct termination of thread
|
||||||
|
|
||||||
|
Revision 1.3 2002/09/07 15:15:28 peter
|
||||||
* old logs removed and tabs fixed
|
* old logs removed and tabs fixed
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user