tc_thread_mutex.cpp 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /**
  2. * Tencent is pleased to support the open source community by making Tars available.
  3. *
  4. * Copyright (C) 2016THL A29 Limited, a Tencent company. All rights reserved.
  5. *
  6. * Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
  7. * in compliance with the License. You may obtain a copy of the License at
  8. *
  9. * https://opensource.org/licenses/BSD-3-Clause
  10. *
  11. * Unless required by applicable law or agreed to in writing, software distributed
  12. * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  13. * CONDITIONS OF ANY KIND, either express or implied. See the License for the
  14. * specific language governing permissions and limitations under the License.
  15. */
  16. #include "util/tc_thread_mutex.h"
  17. #include "util/tc_common.h"
  18. #include <string.h>
  19. #include <iostream>
  20. #include <cassert>
  21. namespace tars
  22. {
  23. TC_ThreadMutex::TC_ThreadMutex()
  24. {
  25. }
  26. TC_ThreadMutex::~TC_ThreadMutex()
  27. {
  28. }
  29. void TC_ThreadMutex::lock() const
  30. {
  31. _mutex.lock();
  32. }
  33. bool TC_ThreadMutex::tryLock() const
  34. {
  35. return _mutex.try_lock();
  36. }
  37. void TC_ThreadMutex::unlock() const
  38. {
  39. _mutex.unlock();
  40. }
  41. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  42. TC_ThreadRecMutex::TC_ThreadRecMutex()
  43. {
  44. }
  45. TC_ThreadRecMutex::~TC_ThreadRecMutex()
  46. {
  47. }
  48. void TC_ThreadRecMutex::lock() const
  49. {
  50. _mutex.lock();
  51. }
  52. void TC_ThreadRecMutex::unlock() const
  53. {
  54. _mutex.unlock();
  55. }
  56. bool TC_ThreadRecMutex::tryLock() const
  57. {
  58. return _mutex.try_lock();
  59. }
  60. }