|
From: <sv...@va...> - 2009-07-23 19:01:47
|
Author: bart
Date: 2009-07-23 20:01:35 +0100 (Thu, 23 Jul 2009)
New Revision: 10569
Log:
Fixed two typo's.
Modified:
trunk/drd/drd.h
Modified: trunk/drd/drd.h
===================================================================
--- trunk/drd/drd.h 2009-07-23 18:22:00 UTC (rev 10568)
+++ trunk/drd/drd.h 2009-07-23 19:01:35 UTC (rev 10569)
@@ -244,14 +244,14 @@
/** Tell DRD to ignore all memory accesses performed by the current thread. */
#define ANNOTATE_IGNORE_READS_AND_WRITES_BEGIN() \
- do { DRDCL_(set_record_loads)(0); DRD_(set_record_stores)(0); } while(0)
+ do { DRDCL_(set_record_loads)(0); DRDCL_(set_record_stores)(0); } while(0)
/**
* Tell DRD to no longer ignore the memory accesses performed by the current
* thread.
*/
#define ANNOTATE_IGNORE_READS_AND_WRITES_END() \
- do { DRDCL_(set_record_loads)(1); DRD_(set_record_stores)(1); } while(0)
+ do { DRDCL_(set_record_loads)(1); DRDCL_(set_record_stores)(1); } while(0)
/**
* Tell DRD that size bytes starting at addr has been allocated by a custom
|