Quick Links:

bal | bbl | bdl | bsl

Public Member Functions

bslmt::LockGuardUnlock< T > Class Template Reference

#include <bslmt_lockguard.h>

Inheritance diagram for bslmt::LockGuardUnlock< T >:
bslmt::UnLockGuard< T >

List of all members.

Public Member Functions

 LockGuardUnlock (T *lock)
 LockGuardUnlock (T *lock, bool alreadyUnlockedFlag)
 ~LockGuardUnlock ()
T * release ()
T * ptr () const

Detailed Description

template<class T>
class bslmt::LockGuardUnlock< T >

This class template implements a guard for release and reacquisition of synchronization resources (i.e., locks).

See Component bslmt_lockguard


Constructor & Destructor Documentation

template<class T>
bslmt::LockGuardUnlock< T >::LockGuardUnlock ( T *  lock  )  [explicit]

Create a scoped guard that conditionally manages the specified lock (if non-null) and invokes lock->unlock(). Supplying a null lock has no effect. The behavior is undefined unless lock (if non-null) is locked by this thread. Note that lock must remain valid throughout the lifetime of this guard, or until release is called.

template<class T>
bslmt::LockGuardUnlock< T >::LockGuardUnlock ( T *  lock,
bool  alreadyUnlockedFlag 
)

Create a scoped guard that conditionally manages the specified lock (if non-null) and invokes lock->unlock() if the specified alreadyUnlockedFlag is false. Supplying a null lock has no effect. The behavior is undefined unless the state of lock (if non-null) is consistent with alreadyUnlockedFlag. Note that alreadyUnlockedFlag is used to indicate whether lock is in an already-unlocked state when passed, so if alreadyUnlockedFlag is true the unlock method will not be called on the supplied lock. Also note that lock must remain valid throughout the lifetime of this guard, or until release is called.

template<class T>
bslmt::LockGuardUnlock< T >::~LockGuardUnlock (  ) 

Destroy this scoped guard and invoke the lock method on the lock object under management by this guard, if any. If no lock is currently being managed, this method has no effect.


Member Function Documentation

template<class T>
T* bslmt::LockGuardUnlock< T >::release (  ) 

Return the address of the modifiable lock object under management by this guard, and release the lock from further management by this guard. If no lock is currently being managed, return 0 with no other effect. Note that this operation does not lock the lock object (if any) that was under management.

template<class T>
T* bslmt::LockGuardUnlock< T >::ptr (  )  const

Return the address of the modifiable lock object under management by this guard, or 0 if no lock is currently being managed.


The documentation for this class was generated from the following file: