diff options
author | somov <somov@yandex-team.ru> | 2022-02-10 16:45:49 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:49 +0300 |
commit | 7489e4682331202b9c7d863c0898eb83d7b12c2b (patch) | |
tree | 9142afc54d335ea52910662635b898e79e192e49 /contrib/restricted/abseil-cpp-tstring/y_absl/base/internal/spinlock.cc | |
parent | a5950576e397b1909261050b8c7da16db58f10b1 (diff) | |
download | ydb-7489e4682331202b9c7d863c0898eb83d7b12c2b.tar.gz |
Restoring authorship annotation for <somov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/restricted/abseil-cpp-tstring/y_absl/base/internal/spinlock.cc')
-rw-r--r-- | contrib/restricted/abseil-cpp-tstring/y_absl/base/internal/spinlock.cc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/base/internal/spinlock.cc b/contrib/restricted/abseil-cpp-tstring/y_absl/base/internal/spinlock.cc index 23bbdac64d..2ee7cde432 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/base/internal/spinlock.cc +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/base/internal/spinlock.cc @@ -12,18 +12,18 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "y_absl/base/internal/spinlock.h" +#include "y_absl/base/internal/spinlock.h" #include <algorithm> #include <atomic> #include <limits> -#include "y_absl/base/attributes.h" -#include "y_absl/base/internal/atomic_hook.h" -#include "y_absl/base/internal/cycleclock.h" -#include "y_absl/base/internal/spinlock_wait.h" -#include "y_absl/base/internal/sysinfo.h" /* For NumCPUs() */ -#include "y_absl/base/call_once.h" +#include "y_absl/base/attributes.h" +#include "y_absl/base/internal/atomic_hook.h" +#include "y_absl/base/internal/cycleclock.h" +#include "y_absl/base/internal/spinlock_wait.h" +#include "y_absl/base/internal/sysinfo.h" /* For NumCPUs() */ +#include "y_absl/base/call_once.h" // Description of lock-word: // 31..00: [............................3][2][1][0] @@ -53,7 +53,7 @@ // Otherwise, bits [31..3] represent the time spent by the current lock // holder to acquire the lock. There may be outstanding waiter(s). -namespace y_absl { +namespace y_absl { ABSL_NAMESPACE_BEGIN namespace base_internal { @@ -85,7 +85,7 @@ SpinLock::SpinLock(base_internal::SchedulingMode mode) uint32_t SpinLock::SpinLoop() { // We are already in the slow path of SpinLock, initialize the // adaptive_spin_count here. - ABSL_CONST_INIT static y_absl::once_flag init_adaptive_spin_count; + ABSL_CONST_INIT static y_absl::once_flag init_adaptive_spin_count; ABSL_CONST_INIT static int adaptive_spin_count = 0; base_internal::LowLevelCallOnce(&init_adaptive_spin_count, []() { adaptive_spin_count = base_internal::NumCPUs() > 1 ? 1000 : 1; @@ -226,4 +226,4 @@ uint64_t SpinLock::DecodeWaitCycles(uint32_t lock_value) { } // namespace base_internal ABSL_NAMESPACE_END -} // namespace y_absl +} // namespace y_absl |