CSingleLock::CSingleLock
Constrói um objeto de CSingleLock .
explicit CSingleLock(
CSyncObject* pObject,
BOOL bInitialLock = FALSE
);
Parâmetros
pObject
Os pontos a sincronização objeto para ser acessados.Não pode ser NULO.bInitialLock
Especifica se tentar inicialmente acessar o objeto fornecido.
Comentários
Essa função é chamada geralmente dentro de uma função de membro de acesso controlado de recurso.
Exemplo
// 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();
}
Requisitos
Cabeçalho: afxmt.h