diff options
author | vmordovin <vmordovin@yandex-team.ru> | 2022-02-10 16:48:14 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:14 +0300 |
commit | 7c7f9bbcf57e15838d15afa94b31d8254b5d7776 (patch) | |
tree | 17073f853e6b3a1a95708e8aa0ea12fa42a717e7 /library/cpp/threading/atomic | |
parent | 466f96709329ff77ded50177df94d1893a226c00 (diff) | |
download | ydb-7c7f9bbcf57e15838d15afa94b31d8254b5d7776.tar.gz |
Restoring authorship annotation for <vmordovin@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/threading/atomic')
-rw-r--r-- | library/cpp/threading/atomic/bool.cpp | 2 | ||||
-rw-r--r-- | library/cpp/threading/atomic/bool.h | 54 | ||||
-rw-r--r-- | library/cpp/threading/atomic/bool_ut.cpp | 56 | ||||
-rw-r--r-- | library/cpp/threading/atomic/ut/ya.make | 16 | ||||
-rw-r--r-- | library/cpp/threading/atomic/ya.make | 18 |
5 files changed, 73 insertions, 73 deletions
diff --git a/library/cpp/threading/atomic/bool.cpp b/library/cpp/threading/atomic/bool.cpp index 37917e01f1..9dd6d2cc7e 100644 --- a/library/cpp/threading/atomic/bool.cpp +++ b/library/cpp/threading/atomic/bool.cpp @@ -1 +1 @@ -#include "bool.h" +#include "bool.h" diff --git a/library/cpp/threading/atomic/bool.h b/library/cpp/threading/atomic/bool.h index d52544e762..13b5e5356a 100644 --- a/library/cpp/threading/atomic/bool.h +++ b/library/cpp/threading/atomic/bool.h @@ -1,36 +1,36 @@ #pragma once -#include <util/system/atomic.h> - -namespace NAtomic { - class TBool { - public: - TBool() noexcept = default; - - TBool(bool val) noexcept - : Val_(val) - { - } - +#include <util/system/atomic.h> + +namespace NAtomic { + class TBool { + public: + TBool() noexcept = default; + + TBool(bool val) noexcept + : Val_(val) + { + } + TBool(const TBool& src) noexcept { AtomicSet(Val_, AtomicGet(src.Val_)); } - operator bool() const noexcept { - return AtomicGet(Val_); - } - + operator bool() const noexcept { + return AtomicGet(Val_); + } + const TBool& operator=(bool val) noexcept { - AtomicSet(Val_, val); - return *this; - } - + AtomicSet(Val_, val); + return *this; + } + const TBool& operator=(const TBool& src) noexcept { - AtomicSet(Val_, AtomicGet(src.Val_)); - return *this; - } - - private: - TAtomic Val_ = 0; - }; + AtomicSet(Val_, AtomicGet(src.Val_)); + return *this; + } + + private: + TAtomic Val_ = 0; + }; } diff --git a/library/cpp/threading/atomic/bool_ut.cpp b/library/cpp/threading/atomic/bool_ut.cpp index 9481f41d8d..4f417e090f 100644 --- a/library/cpp/threading/atomic/bool_ut.cpp +++ b/library/cpp/threading/atomic/bool_ut.cpp @@ -1,31 +1,31 @@ -#include "bool.h" - +#include "bool.h" + #include <library/cpp/testing/unittest/registar.h> - + Y_UNIT_TEST_SUITE(AtomicBool) { Y_UNIT_TEST(ReadWrite) { - NAtomic::TBool v; - - UNIT_ASSERT_VALUES_EQUAL((bool)v, false); - - v = true; - - UNIT_ASSERT_VALUES_EQUAL((bool)v, true); - - v = false; - - UNIT_ASSERT_VALUES_EQUAL((bool)v, false); - - NAtomic::TBool v2; - - UNIT_ASSERT(v == v2); - - v2 = true; - - UNIT_ASSERT(v != v2); - - v = v2; - - UNIT_ASSERT(v == v2); - } -} + NAtomic::TBool v; + + UNIT_ASSERT_VALUES_EQUAL((bool)v, false); + + v = true; + + UNIT_ASSERT_VALUES_EQUAL((bool)v, true); + + v = false; + + UNIT_ASSERT_VALUES_EQUAL((bool)v, false); + + NAtomic::TBool v2; + + UNIT_ASSERT(v == v2); + + v2 = true; + + UNIT_ASSERT(v != v2); + + v = v2; + + UNIT_ASSERT(v == v2); + } +} diff --git a/library/cpp/threading/atomic/ut/ya.make b/library/cpp/threading/atomic/ut/ya.make index 3c555685df..2cdf002704 100644 --- a/library/cpp/threading/atomic/ut/ya.make +++ b/library/cpp/threading/atomic/ut/ya.make @@ -1,9 +1,9 @@ UNITTEST_FOR(library/cpp/threading/atomic) - -OWNER(vmordovin) - -SRCS( - bool_ut.cpp -) - -END() + +OWNER(vmordovin) + +SRCS( + bool_ut.cpp +) + +END() diff --git a/library/cpp/threading/atomic/ya.make b/library/cpp/threading/atomic/ya.make index c3a3ef8a76..6d7989bff0 100644 --- a/library/cpp/threading/atomic/ya.make +++ b/library/cpp/threading/atomic/ya.make @@ -1,9 +1,9 @@ -LIBRARY() - -OWNER(vmordovin) - -SRCS( - bool.cpp -) - -END() +LIBRARY() + +OWNER(vmordovin) + +SRCS( + bool.cpp +) + +END() |