- Added support for most of the ANNOTATE_...() macro's supported by             
  ThreadSanitizer.                                                              
- Modified DRD's error reporting code such that it does no longer let           
  the Valgrind core print the Valgrind thread ID but that it now prints         
  the DRD thread ID and name. Updated expected output files where               
  necessary.                                                                    
- Modified drd/test/Makefile.am such that the tests using gcc's built-in        
  functions for atomic memory access such that these are only compiled when     
  the gcc version in use supports these built-in functions.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10186 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/drd/drd_cond.h b/drd/drd_cond.h
index 75a0743..be98b96 100644
--- a/drd/drd_cond.h
+++ b/drd/drd_cond.h
@@ -40,6 +40,7 @@
 
 void DRD_(cond_set_report_signal_unlocked)(const Bool r);
 void DRD_(cond_set_trace)(const Bool trace_cond);
+struct cond_info* DRD_(cond_get)(const Addr cond);
 void DRD_(cond_pre_init)(const Addr cond);
 void DRD_(cond_post_destroy)(const Addr cond);
 int DRD_(cond_pre_wait)(const Addr cond, const Addr mutex);