tc_thread_rwlock.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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_rwlock.h"
  17. #include <string.h>
  18. #include <iostream>
  19. #include <cassert>
  20. namespace tars
  21. {
  22. TC_ThreadRWLocker::TC_ThreadRWLocker()
  23. {
  24. }
  25. TC_ThreadRWLocker::~TC_ThreadRWLocker()
  26. {
  27. }
  28. void TC_ThreadRWLocker::readLock() const
  29. {
  30. _mutex.readLock();
  31. }
  32. void TC_ThreadRWLocker::writeLock() const
  33. {
  34. _mutex.writeLock();
  35. }
  36. bool TC_ThreadRWLocker::tryReadLock() const
  37. {
  38. return _mutex.tryReadLock();
  39. }
  40. bool TC_ThreadRWLocker::tryWriteLock() const
  41. {
  42. return _mutex.tryWriteLock();
  43. }
  44. void TC_ThreadRWLocker::unReadLock() const
  45. {
  46. _mutex.unReadLock();
  47. }
  48. void TC_ThreadRWLocker::unWriteLock() const
  49. {
  50. _mutex.unWriteLock();
  51. }
  52. }