]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
drd: Rename DRD_STOP_TRACE_VAR() into DRD_STOP_TRACING_VAR()
authorBart Van Assche <bvanassche@acm.org>
Sat, 21 Jan 2012 18:33:56 +0000 (18:33 +0000)
committerBart Van Assche <bvanassche@acm.org>
Sat, 21 Jan 2012 18:33:56 +0000 (18:33 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12348

drd/drd.h
drd/tests/annotate_trace_memory.c

index a497ebf893aca10f9bd5f6551d53d12a1976af03..e5fc0315f1e12c82c234f6493fbd9f4a4282d922 100644 (file)
--- a/drd/drd.h
+++ b/drd/drd.h
@@ -95,7 +95,7 @@
 /**
  * Tell DRD to stop tracing memory accesses for the specified variable.
  */
-#define DRD_STOP_TRACE_VAR(x)                                       \
+#define DRD_STOP_TRACING_VAR(x)                                       \
    VALGRIND_DO_CLIENT_REQUEST_STMT(VG_USERREQ__DRD_STOP_TRACE_ADDR, \
                                    &(x), sizeof(x), 0, 0, 0)
 
index 232506a2c582a9bc7dbf1f42d3125c222d4fd99c..697f0a8aae6a6b6d50d95e34860921fa2060fe17 100644 (file)
@@ -37,12 +37,12 @@ int main(int argc, char** argv)
   i64 = 9;
   __sync_add_and_fetch(&i64, 0x12345678ULL);
 
-  DRD_STOP_TRACE_VAR(f);
-  DRD_STOP_TRACE_VAR(d);
-  DRD_STOP_TRACE_VAR(i8);
-  DRD_STOP_TRACE_VAR(i16);
-  DRD_STOP_TRACE_VAR(i32);
-  DRD_STOP_TRACE_VAR(i64);
+  DRD_STOP_TRACING_VAR(f);
+  DRD_STOP_TRACING_VAR(d);
+  DRD_STOP_TRACING_VAR(i8);
+  DRD_STOP_TRACING_VAR(i16);
+  DRD_STOP_TRACING_VAR(i32);
+  DRD_STOP_TRACING_VAR(i64);
 
   fprintf(stderr, "Done.\n");
   return 0;