NAME

ACE_TSS_Read_Guard - This class is similar to class ACE_TSS_Guard, though it acquires/releases a read lock automatically (naturally, the ACE_LOCK it is instantiated with must support the appropriate API).

SYNOPSIS

#include <ace/Synch_T.h>

template<class ACE_LOCK> class ACE_TSS_Read_Guard : public ACE_TSS_Guard<ACE_LOCK> { public: ACE_TSS_Read_Guard (ACE_LOCK &lock, int block = 1); int acquire_read (void); int acquire (void); int tryacquire_read (void); int tryacquire (void); void dump (void) const; };

Initialization method.

ACE_TSS_Read_Guard (ACE_LOCK &lock, int block = 1);

Lock accessors.

int acquire_read (void);

int acquire (void);

int tryacquire_read (void);

int tryacquire (void);

Utility methods.

void dump (void) const;

ACE_ALLOC_HOOK_DECLARE; Declare the dynamic allocation hooks.

AUTHOR

Doug Schmidt

LIBRARY

ace