diff options
author | tejblum <tejblum@yandex-team.ru> | 2022-02-10 16:48:02 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:02 +0300 |
commit | 6ab7e5f5ada0643a48d393717f443bd548706ffc (patch) | |
tree | b222e5ac2e2e98872661c51ccceee5da0d291e13 /util/system/condvar.h | |
parent | 2bf39531b4f50b889e946ac4866018678a4fb281 (diff) | |
download | ydb-6ab7e5f5ada0643a48d393717f443bd548706ffc.tar.gz |
Restoring authorship annotation for <tejblum@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/system/condvar.h')
-rw-r--r-- | util/system/condvar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/system/condvar.h b/util/system/condvar.h index aae33b2e50..569162717c 100644 --- a/util/system/condvar.h +++ b/util/system/condvar.h @@ -1,5 +1,5 @@ #pragma once - + #include "mutex.h" #include <util/generic/ptr.h> @@ -12,10 +12,10 @@ class TCondVar { public: TCondVar(); ~TCondVar(); - + void BroadCast() noexcept; void Signal() noexcept; - + /* * returns false if failed by timeout */ |