diff options
author | Vlad Yaroslavlev <vladon@vladon.com> | 2022-02-10 16:46:23 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:23 +0300 |
commit | 706b83ed7de5a473436620367af31fc0ceecde07 (patch) | |
tree | 103305d30dec77e8f6367753367f59b3cd68f9f1 /util/system/atexit.cpp | |
parent | 918e8a1574070d0ec733f0b76cfad8f8892ad2e5 (diff) | |
download | ydb-706b83ed7de5a473436620367af31fc0ceecde07.tar.gz |
Restoring authorship annotation for Vlad Yaroslavlev <vladon@vladon.com>. Commit 1 of 2.
Diffstat (limited to 'util/system/atexit.cpp')
-rw-r--r-- | util/system/atexit.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/system/atexit.cpp b/util/system/atexit.cpp index 74fb10b6b1..4ae0d9c3e7 100644 --- a/util/system/atexit.cpp +++ b/util/system/atexit.cpp @@ -34,7 +34,7 @@ namespace { { } - inline void Finish() noexcept { + inline void Finish() noexcept { AtomicSet(FinishStarted_, 1); auto guard = Guard(Lock_); @@ -72,8 +72,8 @@ namespace { private: TAdaptiveLock Lock_; TAtomic FinishStarted_; - TDeque<TFunc> Store_; - TPriorityQueue<TFunc*, TVector<TFunc*>, TCmp> Items_; + TDeque<TFunc> Store_; + TPriorityQueue<TFunc*, TVector<TFunc*>, TCmp> Items_; }; static TAtomic atExitLock = 0; |