summaryrefslogtreecommitdiffstats
path: root/util/system/condvar.h
diff options
context:
space:
mode:
authorVlad Yaroslavlev <[email protected]>2022-02-10 16:46:23 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:46:23 +0300
commit706b83ed7de5a473436620367af31fc0ceecde07 (patch)
tree103305d30dec77e8f6367753367f59b3cd68f9f1 /util/system/condvar.h
parent918e8a1574070d0ec733f0b76cfad8f8892ad2e5 (diff)
Restoring authorship annotation for Vlad Yaroslavlev <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/system/condvar.h')
-rw-r--r--util/system/condvar.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/system/condvar.h b/util/system/condvar.h
index 569162717cb..b18e48432b2 100644
--- a/util/system/condvar.h
+++ b/util/system/condvar.h
@@ -11,10 +11,10 @@
class TCondVar {
public:
TCondVar();
- ~TCondVar();
+ ~TCondVar();
- void BroadCast() noexcept;
- void Signal() noexcept;
+ void BroadCast() noexcept;
+ void Signal() noexcept;
/*
* returns false if failed by timeout
@@ -46,7 +46,7 @@ public:
/*
* infinite wait
*/
- inline void WaitI(TMutex& m) noexcept {
+ inline void WaitI(TMutex& m) noexcept {
WaitD(m, TInstant::Max());
}
@@ -56,7 +56,7 @@ public:
}
//deprecated
- inline void Wait(TMutex& m) noexcept {
+ inline void Wait(TMutex& m) noexcept {
WaitI(m);
}