System.SysUtils.TMultiReadExclusiveWriteSynchronizer.EndRead

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure EndRead;

C++

void __fastcall EndRead();

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils TMultiReadExclusiveWriteSynchronizer

Description

Removes a thread from the internal list of threads that are accessing the protected memory.

Call EndRead after reading from the memory protected by the multi-read exclusive-write synchronizer. Each call to BeginRead must be matched by a call to EndRead, or other threads can never return from the BeginWrite method.

See Also