aboutsummaryrefslogtreecommitdiffhomepage
path: root/absl/base/thread_annotations.h
diff options
context:
space:
mode:
authorGravatar Abseil Team <absl-team@google.com>2017-10-30 07:44:54 -0700
committerGravatar misterg <misterg@google.com>2017-10-30 15:04:23 -0400
commitc8bd28c58ba962abfe1b23633cae649099815a56 (patch)
treefcd29fd162291b36cf96f8fde9a16e3e7ca9084f /absl/base/thread_annotations.h
parent0fece732a21c5ae8fef5fa8b3f0b8487bca68d83 (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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/absl/base/thread_annotations.h b/absl/base/thread_annotations.h
index 025a854..5381600 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:
//