HANDLE hMutex = CreateMutex(NULL, FALSE, NULL);
ASSERT(hMutex);
WaitForSingleObject(hMutex, INFINITE);
// 리소스 사용
ReleaseMutex(hMutex);
Posted on 2009. 5. 12. 13:28
Filed Under Programming/Network
HANDLE hMutex = CreateMutex(NULL, FALSE, NULL);
ASSERT(hMutex);
WaitForSingleObject(hMutex, INFINITE);
// 리소스 사용
ReleaseMutex(hMutex);