Changeset 128 for trunk/Packages/Common/UThreading.pas
- Timestamp:
- Apr 8, 2022, 9:43:55 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/UThreading.pas
r127 r128 4 4 5 5 uses 6 Classes, SysUtils, Forms, fgl, SyncObjs;6 Classes, SysUtils, Forms, Generics.Collections, SyncObjs; 7 7 8 8 type … … 99 99 { TThreadList } 100 100 101 TThreadList = class(T FPGObjectList<TVirtualThread>)101 TThreadList = class(TObjectList<TVirtualThread>) 102 102 function FindById(Id: TThreadID): TVirtualThread; 103 103 constructor Create; virtual; … … 358 358 ThreadListLock := TCriticalSection.Create; 359 359 ThreadList := TThreadList.Create; 360 ThreadList. FreeObjects := False;360 ThreadList.OwnsObjects := False; 361 361 362 362 finalization
Note:
See TracChangeset
for help on using the changeset viewer.