소스 검색

* correct termination of thread

carl 23 년 전
부모
커밋
23fd809891
1개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. 6 2
      fcl/tests/threads.pp

+ 6 - 2
fcl/tests/threads.pp

@@ -20,7 +20,7 @@ procedure TMyThread.Execute;
 begin
   repeat
     write(ch);
-  until false;
+  until Terminated;
 end;
 
 
@@ -43,8 +43,12 @@ begin
   t2.Destroy;
   t1.Destroy;
 end.
+{
   $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
 
 }