NAME

ACE_Guard - This data structure is meant to be used within a method or function... It performs automatic aquisition and release of a parameterized synchronization object ACE_LOCK.

SYNOPSIS

#include <ace/Synch_T.h>

template<class ACE_LOCK> class ACE_Guard { public: ACE_Guard (ACE_LOCK &l); ACE_Guard (ACE_LOCK &l, int block); ~ACE_Guard (void); int acquire (void); int tryacquire (void); int release (void); int locked (void); int remove (void); void dump (void) const; protected: inline ACE_Guard (ACE_LOCK *lock); ACE_LOCK *lock_; int owner_; private: inline ACE_UNIMPLEMENTED_FUNC ( void operator= (const ACE_Guard<ACE_LOCK> &) ); };

DESCRIPTION

The ACE_LOCK class given as an actual parameter must provide at the very least the acquire, tryacquire, release, and remove methods.

Initialization and termination methods.

ACE_Guard (ACE_LOCK &l);

ACE_Guard (ACE_LOCK &l, int block);

~ACE_Guard (void);

Lock accessors.

int acquire (void);

int tryacquire (void);

int release (void);

Utility methods.

int locked (void);

int remove (void);

void dump (void) const;

ACE_ALLOC_HOOK_DECLARE; Declare the dynamic allocation hooks.

Prevent assignment and initialization.

inline ACE_UNIMPLEMENTED_FUNC (
    void operator= (const ACE_Guard<ACE_LOCK> &)
    );

AUTHOR

Doug Schmidt

LIBRARY

ace