Lock.cpp 514 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #include "stdafx.h"
  2. #include "Lock.h"
  3. #ifdef _DEBUG
  4. #define new DEBUG_NEW
  5. #undef THIS_FILE
  6. static char THIS_FILE[] = __FILE__;
  7. #endif
  8. CLock::CLock()
  9. {
  10. InitializeCriticalSection(&cs);
  11. }
  12. CLock::~CLock()
  13. {
  14. DeleteCriticalSection(&cs);
  15. }
  16. void CLock::lock()
  17. {
  18. EnterCriticalSection(&cs);
  19. }
  20. void CLock::unlock()
  21. {
  22. LeaveCriticalSection(&cs);
  23. }
  24. CAutoLock::CAutoLock(CLock* plock)
  25. {
  26. if(plock == NULL)
  27. return;
  28. m_plock = plock;
  29. m_plock->lock();
  30. }
  31. CAutoLock::~CAutoLock()
  32. {
  33. m_plock->unlock();
  34. m_plock = NULL;
  35. }