diff options
author | Abseil Team <absl-team@google.com> | 2018-01-30T21·05-0800 |
---|---|---|
committer | Jon Cohen <cohenjon@google.com> | 2018-01-30T21·52-0500 |
commit | f4f238b09bc365e355ce404d02c7d7fd02662597 (patch) | |
tree | 53e7070c9075cd9ccbdc1c03dd120c8f04348325 /absl/synchronization | |
parent | e5c6ee2d0032d08f4d7a4680c13b9e2e5787ac26 (diff) |
Changes imported from Abseil "staging" branch:
- c77facb7ba7c12d656e213e5d63d7dcd9d1f56ba Present the Writer* methods as an option, rather than an ... by Abseil Team <absl-team@google.com> - c6004d718f185868dee2ec48b4de6425399b062d Split exception_safety_testing out into its own cmake rul... by Jon Cohen <cohenjon@google.com> - 9aa6fc7b34674472d808ed8021f3b20faea82f78 Downstream https://github.com/abseil/abseil-cpp/pull/69 by Jon Cohen <cohenjon@google.com> - 13d340269f284b815cc409d2271099e535f4cba4 Internal change by Jon Cohen <cohenjon@google.com> - 51840a9243ac9d47eb3c177398d10bb3341f3230 Fix assertion in conversion from floating point types to ... by Alex Strelnikov <strel@google.com> GitOrigin-RevId: c77facb7ba7c12d656e213e5d63d7dcd9d1f56ba Change-Id: I7590561b04a986ffbec7139bb9c3aea319a3b975
Diffstat (limited to 'absl/synchronization')
-rw-r--r-- | absl/synchronization/mutex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/absl/synchronization/mutex.h b/absl/synchronization/mutex.h index 374cf57d2e94..9301222e0218 100644 --- a/absl/synchronization/mutex.h +++ b/absl/synchronization/mutex.h @@ -233,8 +233,8 @@ class LOCKABLE Mutex { // // Aliases for `Mutex::Lock()`, `Mutex::Unlock()`, and `Mutex::TryLock()`. // - // Use the `Writer*()` versions of these method names when using complementary - // `Reader*()` methods to distingish simple exclusive `Mutex` usage (`Lock()`, + // These methods may be used (along with the complementary `Reader*()` + // methods) to distingish simple exclusive `Mutex` usage (`Lock()`, // etc.) from reader/writer lock usage. void WriterLock() EXCLUSIVE_LOCK_FUNCTION() { this->Lock(); } |