Kyoto Cabinet
Public Member Functions
kyotocabinet::SlottedSpinRWLock Class Reference

Slotted lightweight reader-writer lock devices. More...

#include <kcthread.h>

List of all members.

Public Member Functions

 SlottedSpinRWLock (size_t slotnum)
 Constructor.
 ~SlottedSpinRWLock ()
 Destructor.
void lock_writer (size_t idx)
 Get the writer lock of a slot.
void lock_reader (size_t idx)
 Get the reader lock of a slot.
void unlock (size_t idx)
 Release the lock of a slot.
void lock_writer_all ()
 Get the writer locks of all slots.
void lock_reader_all ()
 Get the reader locks of all slots.
void unlock_all ()
 Release the locks of all slots.

Detailed Description

Slotted lightweight reader-writer lock devices.


Constructor & Destructor Documentation

Constructor.

Parameters:
slotnumthe number of slots.

Destructor.


Member Function Documentation

Get the writer lock of a slot.

Parameters:
idxthe index of a slot.

Get the reader lock of a slot.

Parameters:
idxthe index of a slot.

Release the lock of a slot.

Parameters:
idxthe index of a slot.

Get the writer locks of all slots.

Get the reader locks of all slots.

Release the locks of all slots.