123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #include "stdafx.h"
- #include "Lock.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- CLock::CLock()
- {
- InitializeCriticalSection(&cs);
- }
- CLock::~CLock()
- {
- DeleteCriticalSection(&cs);
- }
- void CLock::lock()
- {
- EnterCriticalSection(&cs);
- }
- void CLock::unlock()
- {
- LeaveCriticalSection(&cs);
- }
- CAutoLock::CAutoLock(CLock* plock)
- {
- if(plock == NULL)
- return;
- m_plock = plock;
- m_plock->lock();
- }
- CAutoLock::~CAutoLock()
- {
- m_plock->unlock();
- m_plock = NULL;
- }
|