From 1bd43696f2a3678f0da3a23ff65fa8174805dd8b Mon Sep 17 00:00:00 2001 From: khizmax Date: Tue, 29 Nov 2016 23:45:15 +0300 Subject: [PATCH] Fixed a typo --- cds/compiler/feature_tsan.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cds/compiler/feature_tsan.h b/cds/compiler/feature_tsan.h index 7703be40..5cf2886f 100644 --- a/cds/compiler/feature_tsan.h +++ b/cds/compiler/feature_tsan.h @@ -53,7 +53,7 @@ # define CDS_TSAN_ANNOTATE_NEW_MEMORY( addr, sz ) AnnotateNewMemory( (char *) __FILE__, __LINE__, reinterpret_cast(addr), sz ) # define CDS_TSAN_ANNOTATE_MUTEX_CREATE( addr ) AnnotateRWLockCreate( __FILE__, __LINE__, reinterpret_cast(addr)) -# define CDS_TSAN_ANNOTATE_MUTEX_DESTROY( addr ) AnnotateRWLockdESTROY( __FILE__, __LINE__, reinterpret_cast(addr)) +# define CDS_TSAN_ANNOTATE_MUTEX_DESTROY( addr ) AnnotateRWLockDestroy( __FILE__, __LINE__, reinterpret_cast(addr)) // must be called after actual acquire # define CDS_TSAN_ANNOTATE_MUTEX_ACQUIRED( addr ) AnnotateRWLockAcquired( __FILE__, __LINE__, reinterpret_cast(addr), 1 ) // must be called before actual release -- 2.34.1