aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-04-08 20:32:19 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-04-08 21:41:55 -0700
commit01e089636c66457c7c82f6e6473c2a82215d37a8 (patch)
treeb58207c542bedcf7da0529db55187a05f0406481
parentf72976cad2e63c481cd9b002a5f935f72385d2a7 (diff)
Remove definition of macro TS_UNCHECKED_READ.
Change: 119434669
-rw-r--r--tensorflow/core/platform/default/thread_annotations.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/tensorflow/core/platform/default/thread_annotations.h b/tensorflow/core/platform/default/thread_annotations.h
index 46143b2ea3..f3936d366d 100644
--- a/tensorflow/core/platform/default/thread_annotations.h
+++ b/tensorflow/core/platform/default/thread_annotations.h
@@ -157,11 +157,6 @@ limitations under the License.
// annotations will be ignored by the analysis.
#define TS_UNCHECKED(x) ""
-// Disables warnings for a single read operation. This can be used to do racy
-// reads of guarded data members, in cases where the race is benign.
-#define TS_UNCHECKED_READ(x) \
- ::tensorflow::thread_safety_analysis::ts_unchecked_read(x)
-
namespace tensorflow {
namespace thread_safety_analysis {