CComSafeDeleteCriticalSection Class
This class provides methods for obtaining and releasing ownership of a critical section object.
class CComSafeDeleteCriticalSection : public CComCriticalSection
Members
Public Constructors
Name |
Description |
---|---|
CComSafeDeleteCriticalSection::CComSafeDeleteCriticalSection |
The constructor. |
CComSafeDeleteCriticalSection::~CComSafeDeleteCriticalSection |
The destructor. |
Public Methods
Name |
Description |
---|---|
Creates and initializes a critical section object. |
|
Obtains ownership of the critical section object. |
|
Releases system resources used by the critical section object. |
Data Members
Flags whether the internal CRITICAL_SECTION object has been initialized. |
Remarks
CComSafeDeleteCriticalSection derives from the class CComCriticalSection. However, CComSafeDeleteCriticalSection provides additional safety mechanisms over CComCriticalSection.
When an instance of CComSafeDeleteCriticalSection goes out of scope or is explicitly deleted from memory, the underlying critical section object will automatically be cleaned up if it is still valid. In addition, the CComSafeDeleteCriticalSection::Term method will exit gracefully if the underlying critical section object has not yet been allocated or has already been released from memory.
See CComCriticalSection for more information on critical section helper classes.
Inheritance Hierarchy
CComSafeDeleteCriticalSection
Requirements
Header: atlcore.h