From: Bart Van Assche Date: Sat, 21 Jan 2012 18:33:56 +0000 (+0000) Subject: drd: Rename DRD_STOP_TRACE_VAR() into DRD_STOP_TRACING_VAR() X-Git-Tag: svn/VALGRIND_3_8_0~505 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40ec829e2141bd03fa7b3f779da43e73663143bb;p=thirdparty%2Fvalgrind.git drd: Rename DRD_STOP_TRACE_VAR() into DRD_STOP_TRACING_VAR() git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12348 --- diff --git a/drd/drd.h b/drd/drd.h index a497ebf893..e5fc0315f1 100644 --- 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) diff --git a/drd/tests/annotate_trace_memory.c b/drd/tests/annotate_trace_memory.c index 232506a2c5..697f0a8aae 100644 --- a/drd/tests/annotate_trace_memory.c +++ b/drd/tests/annotate_trace_memory.c @@ -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;