Partager via


CSingleLock::CSingleLock

Construit un objet CSingleLock.

explicit CSingleLock( 
   CSyncObject* pObject, 
   BOOL bInitialLock = FALSE  
);

Paramètres

  • pObject
    Pointe vers l'objet de synchronisation à faire référence. Ne peut pas être NULL.

  • bInitialLock
    Spécifie s'il faut essayer initialement d'accéder à l'objet fourni.

Notes

Cette fonction est généralement appel d'une fonction membre d'accès de la ressource contrôlée.

Exemple

// m_CritSection is a data member (of type CCriticalSection)
// of an existing class that implements the resource being shared.

// Relate the synchronization object (m_CritSection) with
// our CSingleLock object. 
CSingleLock singleLock(&m_CritSection);
singleLock.Lock();  // Attempt to lock the shared resource
if (singleLock.IsLocked())  // Resource has been locked
{
   //...use the shared resource...

   // Now that we are finished, 
   // unlock the resource for others.
   singleLock.Unlock();
}

Configuration requise

Header: afxmt.h

Voir aussi

Référence

CSingleLock, classe

Graphique de la hiérarchie