diff options
author | Anton Samokhvalov <pg83@yandex.ru> | 2022-02-10 16:45:15 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:15 +0300 |
commit | 72cb13b4aff9bc9cf22e49251bc8fd143f82538f (patch) | |
tree | da2c34829458c7d4e74bdfbdf85dff449e9e7fb8 /util/thread/lfstack_ut.cpp | |
parent | 778e51ba091dc39e7b7fcab2b9cf4dbedfb6f2b5 (diff) | |
download | ydb-72cb13b4aff9bc9cf22e49251bc8fd143f82538f.tar.gz |
Restoring authorship annotation for Anton Samokhvalov <pg83@yandex.ru>. Commit 1 of 2.
Diffstat (limited to 'util/thread/lfstack_ut.cpp')
-rw-r--r-- | util/thread/lfstack_ut.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/util/thread/lfstack_ut.cpp b/util/thread/lfstack_ut.cpp index e20a838f95b..61a8137db9f 100644 --- a/util/thread/lfstack_ut.cpp +++ b/util/thread/lfstack_ut.cpp @@ -6,19 +6,19 @@ #include <library/cpp/testing/unittest/registar.h> -#include "lfstack.h" +#include "lfstack.h" Y_UNIT_TEST_SUITE(TLockFreeStackTests) { class TCountDownLatch { private: TAtomic Current_; TSystemEvent EventObject_; - + public: TCountDownLatch(unsigned initial) : Current_(initial) - { - } + { + } void CountDown() { if (AtomicDecrement(Current_) == 0) { @@ -175,11 +175,11 @@ Y_UNIT_TEST_SUITE(TLockFreeStackTests) { } Y_UNIT_TEST(CleanInDestructor) { - TSimpleSharedPtr<bool> p(new bool); + TSimpleSharedPtr<bool> p(new bool); UNIT_ASSERT_VALUES_EQUAL(1u, p.RefCount()); { - TLockFreeStack<TSimpleSharedPtr<bool>> stack; + TLockFreeStack<TSimpleSharedPtr<bool>> stack; stack.Enqueue(p); stack.Enqueue(p); @@ -193,14 +193,14 @@ Y_UNIT_TEST_SUITE(TLockFreeStackTests) { Y_UNIT_TEST(NoCopyTest) { static unsigned copied = 0; struct TCopyCount { - TCopyCount(int) { - } - TCopyCount(const TCopyCount&) { - ++copied; - } - - TCopyCount(TCopyCount&&) { - } + TCopyCount(int) { + } + TCopyCount(const TCopyCount&) { + ++copied; + } + + TCopyCount(TCopyCount&&) { + } TCopyCount& operator=(const TCopyCount&) { ++copied; |