From 7670a24f6fb3df26a9edf7bd1be9d2ee9a1382f6 Mon Sep 17 00:00:00 2001 From: khizmax Date: Sun, 16 Apr 2017 19:24:45 +0300 Subject: [PATCH] Removed redundant comment --- cds/container/fcstack.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cds/container/fcstack.h b/cds/container/fcstack.h index 65994be7..8641ff7f 100644 --- a/cds/container/fcstack.h +++ b/cds/container/fcstack.h @@ -334,9 +334,6 @@ namespace cds { namespace container { /// Batch-processing flat combining void fc_process( typename fc_kernel::iterator itBegin, typename fc_kernel::iterator itEnd ) { - // this function is called under FC mutex, so switch TSan off - //CDS_TSAN_ANNOTATE_IGNORE_RW_BEGIN; - typedef typename fc_kernel::iterator fc_iterator; for ( fc_iterator it = itBegin, itPrev = itEnd; it != itEnd; ++it ) { switch ( it->op( atomics::memory_order_acquire )) { @@ -350,7 +347,6 @@ namespace cds { namespace container { break; } } - //CDS_TSAN_ANNOTATE_IGNORE_RW_END; } //@endcond -- 2.34.1