diff options
author | Anton Samokhvalov <pg83@yandex.ru> | 2022-02-10 16:45:17 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:17 +0300 |
commit | d3a398281c6fd1d3672036cb2d63f842d2cb28c5 (patch) | |
tree | dd4bd3ca0f36b817e96812825ffaf10d645803f2 /util/thread/lfstack_ut.cpp | |
parent | 72cb13b4aff9bc9cf22e49251bc8fd143f82538f (diff) | |
download | ydb-d3a398281c6fd1d3672036cb2d63f842d2cb28c5.tar.gz |
Restoring authorship annotation for Anton Samokhvalov <pg83@yandex.ru>. Commit 2 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 61a8137db9..e20a838f95 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; |