Reader-Writer Synchronization Technology Sample

This sample demonstrates use of the ReaderWriterLock thread synchronization class. The functionality of the ReaderWriterLock type allows the developer to write code that enforces exclusive access to a shared resource while a thread is writing or modifying the resource, but allows non-exclusive access when reading or querying the resource.

Readme Location

For more information, see the Readme file at <SDK>v1.1\Samples\Technologies\Threading\ReaderWriterSynchronization

Concepts Presented in This Sample

thread synchronization, samples; ReaderWriterLock class, samples; AutoResetEvent class, samples; Interlocked class, samples; Threading namespace, samples; ThreadPool class, samples; Delegate class, samples; WaitCallback class, samples; threads, samples