|
From: <sv...@va...> - 2012-03-08 18:58:54
|
bart 2012-03-08 18:58:41 +0000 (Thu, 08 Mar 2012)
New Revision: 12434
Log:
helgrind: Implement ANNOTATE_BENIGN_RACE_SIZED()
Modified files:
trunk/helgrind/helgrind.h
Modified: trunk/helgrind/helgrind.h (+1 -1)
===================================================================
--- trunk/helgrind/helgrind.h 2012-03-08 17:11:03 +00:00 (rev 12433)
+++ trunk/helgrind/helgrind.h 2012-03-08 18:58:41 +00:00 (rev 12434)
@@ -603,7 +603,7 @@
/* Same as ANNOTATE_BENIGN_RACE(address, description), but applies to
the memory range [address, address+size). */
#define ANNOTATE_BENIGN_RACE_SIZED(address, size, description) \
- _HG_CLIENTREQ_UNIMP("ANNOTATE_BENIGN_RACE_SIZED")
+ VALGRIND_HG_DISABLE_CHECKING(address, size)
/* Request the analysis tool to ignore all reads in the current thread
until ANNOTATE_IGNORE_READS_END is called. Useful to ignore
|