Mutex.cpp 664 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // Mutex.cpp
  3. //
  4. // $Id: //poco/1.4/Foundation/src/Mutex.cpp#2 $
  5. //
  6. // Library: Foundation
  7. // Package: Threading
  8. // Module: Mutex
  9. //
  10. // Copyright (c) 2004-2008, Applied Informatics Software Engineering GmbH.
  11. // and Contributors.
  12. //
  13. // SPDX-License-Identifier: BSL-1.0
  14. //
  15. #include "Poco/Mutex.h"
  16. #if defined(POCO_OS_FAMILY_WINDOWS)
  17. #if defined(_WIN32_WCE)
  18. #include "Mutex_WINCE.cpp"
  19. #else
  20. #include "Mutex_WIN32.cpp"
  21. #endif
  22. #elif defined(POCO_VXWORKS)
  23. #include "Mutex_VX.cpp"
  24. #else
  25. #include "Mutex_POSIX.cpp"
  26. #endif
  27. namespace Poco {
  28. Mutex::Mutex()
  29. {
  30. }
  31. Mutex::~Mutex()
  32. {
  33. }
  34. FastMutex::FastMutex()
  35. {
  36. }
  37. FastMutex::~FastMutex()
  38. {
  39. }
  40. } // namespace Poco