aboutsummaryrefslogtreecommitdiffstats
path: root/util/thread/pool.cpp
diff options
context:
space:
mode:
authoragorodilov <agorodilov@yandex-team.ru>2022-02-10 16:47:09 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:09 +0300
commitbd5ef432f5cfb1e18851381329d94665a4c22470 (patch)
treeb83306b6e37edeea782e9eed673d89286c4fef35 /util/thread/pool.cpp
parent7a4979e6211c3e78c7f9041d4a9e5d3405343c36 (diff)
downloadydb-bd5ef432f5cfb1e18851381329d94665a4c22470.tar.gz
Restoring authorship annotation for <agorodilov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/thread/pool.cpp')
-rw-r--r--util/thread/pool.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/thread/pool.cpp b/util/thread/pool.cpp
index d2a921f199..05fad02e9b 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());