| Programming C# C++ (7) Delphi (618) .NET (2) Database (71) Delphi IDE (90) Network (39) Printing (3) Strings (12) VCL (83) Windows with Delphi (280) Java (8) JavaScript (29) perl (9) php (4) VBScript (1) Visual Basic (1)
|
How to make a data structure thread-safe
You need to create a global TCriticalSection and lock / unlock it when you access shared resources with code as shown below.
Comments:
|