Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Represents a "critical section" — a synchronization object that allows one thread at a time to access a resource or section of code.
Syntax
class CCriticalSection : public CSyncObject
Members
Public Constructors
| Name | Description |
|---|---|
CCriticalSection::CCriticalSection |
Constructs a CCriticalSection object. |
Public Methods
| Name | Description |
|---|---|
CCriticalSection::Lock |
Use to gain access to the CCriticalSection object. |
CCriticalSection::Unlock |
Releases the CCriticalSection object. |
Public Operators
| Name | Description |
|---|---|
CCriticalSection::operator CRITICAL_SECTION* |
Retrieves a pointer to the internal CRITICAL_SECTION object. |
Public Data Members
| Name | Description |
|---|---|
CCriticalSection::m_sect |
A CRITICAL_SECTION object. |
Remarks
Critical sections are useful when only one thread at a time can be allowed to modify data or some other controlled resource. For example, adding nodes to a linked list is a process that should only be allowed by one thread at a time. By using a CCriticalSection object to control the linked list, only one thread at a time can gain access to the list.
Note
The functionality of the CCriticalSection class is provided by an actual Win32 CRITICAL_SECTION object.
Critical sections are used instead of mutexes (see CMutex) when speed is critical and the resource won't be used across process boundaries.
There are two methods for using a CCriticalSection object: stand-alone and embedded in a class.
Stand-alone method To use a stand-alone
CCriticalSectionobject, construct theCCriticalSectionobject when it's needed. After a successful return from the constructor, explicitly lock the object with a call toLock. CallUnlockwhen you're done accessing the critical section. This method, while clearer to someone reading your source code, is more prone to error as you must remember to lock and unlock the critical section before and after access.A more preferable method is to use the
CSingleLockclass. It also has aLockandUnlockmethod, but you don't have to worry about unlocking the resource if an exception occurs.Embedded method You can also share a class with multiple threads by adding a
CCriticalSection-type data member to the class and locking the data member when needed.
For more information on using CCriticalSection objects, see the article Multithreading: How to Use the Synchronization Classes.
Inheritance Hierarchy
CCriticalSection
Requirements
Header: afxmt.h
CCriticalSection::CCriticalSection
Constructs a CCriticalSection object.
CCriticalSection();
Remarks
To access or release a CCriticalSection object, create a CSingleLock object and call its Lock and Unlock member functions. If the CCriticalSection object is being used stand-alone, call its Unlock member function to release it.
If the constructor fails to allocate the required system memory, a memory exception (of type CMemoryException) is automatically thrown.
Example
See the example for CCriticalSection::Lock.
CCriticalSection::Lock
Call this member function to gain access to the critical section object.
BOOL Lock();
BOOL Lock(DWORD dwTimeout);
Parameters
dwTimeout
Lock ignores this parameter value.
Return Value
Nonzero if the function was successful; otherwise 0.
Remarks
Lock is a blocking call that won't return until the critical section object is signaled (becomes available).
If timed waits are necessary, you can use a CMutex object instead of a CCriticalSection object.
If Lock fails to allocate the necessary system memory, a memory exception (of type CMemoryException) is automatically thrown.
Example
This example demonstrates the nested critical section approach by controlling access to a shared resource (the static _strShared object) using a shared CCriticalSection object. The SomeMethod function demonstrates updating a shared resource in a safe manner.
//Definition of critical section class
class CMyCritSectClass
{
static CString _strShared; //shared resource
static CCriticalSection _critSect;
public:
CMyCritSectClass(void) {}
~CMyCritSectClass(void) {}
void SomeMethod(void); //locks, modifies, and unlocks shared resource
};
//Declaration of static members and SomeMethod
CString CMyCritSectClass::_strShared;
CCriticalSection CMyCritSectClass::_critSect;
void CMyCritSectClass::SomeMethod()
{
_critSect.Lock();
if (_strShared == "")
_strShared = "<text>";
_critSect.Unlock();
}
CCriticalSection::m_sect
Contains a critical section object that is used by all CCriticalSection methods.
CRITICAL_SECTION m_sect;
CCriticalSection::operator CRITICAL_SECTION*
Retrieves a CRITICAL_SECTION object.
operator CRITICAL_SECTION*();
Remarks
Call this function to retrieve a pointer to the internal CRITICAL_SECTION object.
CCriticalSection::Unlock
Releases the CCriticalSection object for use by another thread.
BOOL Unlock();
Return Value
Nonzero if the CCriticalSection object was owned by the thread and the release was successful; otherwise 0.
Remarks
If the CCriticalSection is being used stand-alone, Unlock must be called immediately after completing use of the resource controlled by the critical section. If a CSingleLock object is being used, CCriticalSection::Unlock will be called by the lock object's Unlock member function.
Example
See the example for CCriticalSection::Lock.