aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2022-07-15 18:27:02 +0300
committerthegeorg <thegeorg@yandex-team.com>2022-07-15 18:27:02 +0300
commit0a78ab3e043a2e93bc7f428a93013d8f05e9bc84 (patch)
treeb7347519d5568ca3ae837712909c1a2466666306 /library/cpp
parent33372610945489b6d181d8d89e195fd698945425 (diff)
downloadydb-0a78ab3e043a2e93bc7f428a93013d8f05e9bc84.tar.gz
Fix compiling jwt-cpp on Darwin
Нашёл локальный для Маркета фикс и вынес в код самого контриба.
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/yt/threading/rw_spin_lock.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/library/cpp/yt/threading/rw_spin_lock.h b/library/cpp/yt/threading/rw_spin_lock.h
index ed1e178730..3e834dfcc9 100644
--- a/library/cpp/yt/threading/rw_spin_lock.h
+++ b/library/cpp/yt/threading/rw_spin_lock.h
@@ -27,15 +27,17 @@ public:
* Optimized for the case of read-intensive workloads.
* Cheap (just one atomic increment and no spinning if no writers are present).
* Don't use this call if forks are possible: forking at some
- * intermediate point inside #AcquireReader may leave the lock
- * forever stuck for the child process.
+ * intermediate point inside #AcquireReader may corrupt the lock state and
+ * leave lock forever stuck for the child process.
*/
void AcquireReader() noexcept;
//! Acquires the reader lock.
/*!
* A more expensive version of #AcquireReader (includes at least
* one atomic load and CAS; also may spin even if just readers are present).
- * In contrast to #AcquireReader, this call is safe to use in presence of forks.
+ * In contrast to #AcquireReader, this method can be used in the presence of forks.
+ * Note that fork-friendliness alone does not provide fork-safety: additional
+ * actions must be performed to release the lock after a fork.
*/
void AcquireReaderForkFriendly() noexcept;
//! Tries acquiring the reader lock; see #AcquireReader.