diff options
author | Abseil Team <absl-team@google.com> | 2017-10-30T14·44-0700 |
---|---|---|
committer | misterg <misterg@google.com> | 2017-10-30T19·04-0400 |
commit | c8bd28c58ba962abfe1b23633cae649099815a56 (patch) | |
tree | fcd29fd162291b36cf96f8fde9a16e3e7ca9084f /absl/base/thread_annotations.h | |
parent | 0fece732a21c5ae8fef5fa8b3f0b8487bca68d83 (diff) |
Changes imported from Abseil "staging" branch:
- 0726b35bb91aa98b87b340db9019fe7bdb19fe52 Fixing typo when checking CUDA compiler version, and use ... by Abseil Team <absl-team@google.com> - 3c94139e0e2ca6387c0498f24c9e44172208fffc Update comment of GUARDED_BY to match feedback provided b... by Abseil Team <absl-team@google.com> - 116d0427b845613213e26afc1203621ac7bd6910 Turn off ABSL TLS support for buggy versions of the Andro... by Abseil Team <absl-team@google.com> GitOrigin-RevId: 0726b35bb91aa98b87b340db9019fe7bdb19fe52 Change-Id: I861e4fb27d77904e705ccbcb4054f10c3f43e158
Diffstat (limited to 'absl/base/thread_annotations.h')
-rw-r--r-- | absl/base/thread_annotations.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/absl/base/thread_annotations.h b/absl/base/thread_annotations.h index 025a8548d5d7..53816005588e 100644 --- a/absl/base/thread_annotations.h +++ b/absl/base/thread_annotations.h @@ -43,9 +43,9 @@ // GUARDED_BY() // -// Documents if a shared variable/field needs to be protected by a mutex. -// GUARDED_BY() allows the user to specify a particular mutex that should be -// held when accessing the annotated variable. +// Documents if a shared field or global variable needs to be protected by a +// mutex. GUARDED_BY() allows the user to specify a particular mutex that +// should be held when accessing the annotated variable. // // Example: // |