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::_ReentrantBlockingLock::_Scoped_lock Class Reference

#include <concrt.h>

Public Member Functions

 _Scoped_lock (_ReentrantBlockingLock &_Lock)
 
 ~_Scoped_lock ()
 

Private Member Functions

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

Private Attributes

_ReentrantBlockingLock_M_lock
 

Constructor & Destructor Documentation

Concurrency::details::_ReentrantBlockingLock::_Scoped_lock::_Scoped_lock ( _ReentrantBlockingLock _Lock)
inlineexplicit
792  : _M_lock(_Lock)
793  {
794  _M_lock._Acquire();
795  }
_ReentrantBlockingLock & _M_lock
Definition: concrt.h:803
Concurrency::details::_ReentrantBlockingLock::_Scoped_lock::~_Scoped_lock ( )
inline
799  {
800  _M_lock._Release();
801  }
_ReentrantBlockingLock & _M_lock
Definition: concrt.h:803
Concurrency::details::_ReentrantBlockingLock::_Scoped_lock::_Scoped_lock ( const _Scoped_lock )
private

Member Function Documentation

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

Member Data Documentation

_ReentrantBlockingLock& Concurrency::details::_ReentrantBlockingLock::_Scoped_lock::_M_lock
private

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