次の方法で共有


CSingleLock::Unlock

CSingleLockが所有する同期オブジェクトを解放します。

BOOL Unlock( ); 
BOOL Unlock(
   LONG lCount,
   LPLONG lPrevCount = NULL 
);

パラメーター

  • lCount
    リリースへのアクセスの数。1 以上であることが必要です。により、指定されたオブジェクトの数が最大値を超えてしましたら計算は、関数の戻り値の FALSE変更されません。

  • lPrevCount
    同期オブジェクトの数を受け取る変数へのポインター。nullが、前のカウント返されません。

戻り値

関数が正常に終了した場合は、; それ以外の場合は 0。

解説

この関数は CSingleLock のデストラクターによって呼び出されます。

セマフォのカウント複数のアクセスを解放し、Unlock の 2 番目のフォームを使用し、リリースへのアクセスの数を指定する場合は。

使用例

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

// Relate the synchronization object (m_Mutex) with
// our CSingleLock object. 
CSingleLock singleLock(&m_Mutex);

// Attempt to lock the shared resource
if (singleLock.Lock(100))    // Wait 100 ms...
{
    // We were able to lock the resource;
    // we may now work with the data associated with the mutex...

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

必要条件

Header: afxmt.h

参照

関連項目

CSingleLock クラス

階層図