Topics for Win32 & Delphi Training

C.Hanish Menon
1998
Status: INCOMPLETE

· Synchronization objects: mutex, semaphore, and event handles

· Critical Section

· File handles

· Named pipe handles

· Console input buffer handles

· Communication device handles

· Process handles

· Thread handles

The WAIT .... Functions

Mutex & Events can also be used for interprocess synchronization.

Createxxxx,Openxxx,Waitxxxx,Releasexxxx,SetEvent or ResetEvent ....

{ allocate the resource }

try

{ statements that use the resource }

finally

{ free the resource }

end;