/Users/deen/code/yugabyte-db/src/yb/util/rw_semaphore.cc
Line | Count | Source |
1 | | // Copyright (c) YugaByte, Inc. |
2 | | // |
3 | | // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
4 | | // in compliance with the License. You may obtain a copy of the License at |
5 | | // |
6 | | // http://www.apache.org/licenses/LICENSE-2.0 |
7 | | // |
8 | | // Unless required by applicable law or agreed to in writing, software distributed under the License |
9 | | // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
10 | | // or implied. See the License for the specific language governing permissions and limitations |
11 | | // under the License. |
12 | | // |
13 | | |
14 | | #include "yb/util/thread.h" |
15 | | |
16 | | #include "yb/util/rw_semaphore.h" |
17 | | |
18 | | namespace yb { |
19 | | |
20 | | #ifndef NDEBUG |
21 | 75.7M | void rw_semaphore::AssignWriterTid() { |
22 | 75.7M | writer_tid_ = Thread::CurrentThreadId(); |
23 | 75.7M | } |
24 | | #endif |
25 | | |
26 | | } // namespace yb |