STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Member Functions | Private Member Functions | Private Attributes | List of all members
Concurrency::details::_ReentrantLock::_Scoped_lock Class Reference

#include <concrt.h>

Public Member Functions

 _Scoped_lock (_ReentrantLock &_Lock)
 
 ~_Scoped_lock ()
 

Private Member Functions

 _Scoped_lock (const _Scoped_lock &)
 
_Scoped_lock const & operator= (const _Scoped_lock &)
 

Private Attributes

_ReentrantLock_M_lock
 

Constructor & Destructor Documentation

Concurrency::details::_ReentrantLock::_Scoped_lock::_Scoped_lock ( _ReentrantLock _Lock)
inlineexplicit
841  : _M_lock(_Lock)
842  {
843  _M_lock._Acquire();
844  }
_ReentrantLock & _M_lock
Definition: concrt.h:852
Concurrency::details::_ReentrantLock::_Scoped_lock::~_Scoped_lock ( )
inline
848  {
849  _M_lock._Release();
850  }
_ReentrantLock & _M_lock
Definition: concrt.h:852
Concurrency::details::_ReentrantLock::_Scoped_lock::_Scoped_lock ( const _Scoped_lock )
private

Member Function Documentation

_Scoped_lock const& Concurrency::details::_ReentrantLock::_Scoped_lock::operator= ( const _Scoped_lock )
private

Member Data Documentation

_ReentrantLock& Concurrency::details::_ReentrantLock::_Scoped_lock::_M_lock
private

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