core.sync.rwmutex

The read/write mutex module provides a primitive for maintaining shared read access and mutually exclusive write access.

Public Imports

core.sync.exception
public import core.sync.exception;
Undocumented in source.

Members

Classes

ReadWriteMutex
class ReadWriteMutex

This class represents a mutex that allows any number of readers to enter, but when a writer enters, all other readers and writers are blocked.

Meta

Authors

Sean Kelly