diff options
author | agorodilov <agorodilov@yandex-team.ru> | 2022-02-10 16:47:09 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:09 +0300 |
commit | 7a4979e6211c3e78c7f9041d4a9e5d3405343c36 (patch) | |
tree | 9e9943579e5a14679af7cd2cda3c36d8c0b775d3 /util/thread/pool.cpp | |
parent | 676340c42e269f3070f194d160f42a83a10568d4 (diff) | |
download | ydb-7a4979e6211c3e78c7f9041d4a9e5d3405343c36.tar.gz |
Restoring authorship annotation for <agorodilov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/thread/pool.cpp')
-rw-r--r-- | util/thread/pool.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util/thread/pool.cpp b/util/thread/pool.cpp index 05fad02e9b..d2a921f199 100644 --- a/util/thread/pool.cpp +++ b/util/thread/pool.cpp @@ -201,7 +201,7 @@ private: } } - void DoExecute() override { + void DoExecute() override { THolder<TTsr> tsr(new TTsr(Parent_)); if (Namer) { @@ -652,7 +652,7 @@ namespace { { } - void Process(void* data) override { + void Process(void* data) override { THolder<TOwnedObjectInQueue> self(this); Owned->Process(data); } @@ -688,7 +688,7 @@ namespace { { } - ~TThreadImpl() override = default; + ~TThreadImpl() override = default; inline void WaitForStart() noexcept { StartEvent_.Wait(); @@ -699,7 +699,7 @@ namespace { } private: - void Process(void* /*tsr*/) override { + void Process(void* /*tsr*/) override { TThreadImplRef This(this); { @@ -736,7 +736,7 @@ namespace { } private: - void DoRun(IThreadAble* func) override { + void DoRun(IThreadAble* func) override { TThreadImplRef impl(new TThreadImpl(func)); Parent_->SafeAdd(impl.Get()); |