]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Moved two define's, such that the ABIWARNING appears immediately before the enum...
authorBart Van Assche <bvanassche@acm.org>
Thu, 25 Dec 2008 09:31:40 +0000 (09:31 +0000)
committerBart Van Assche <bvanassche@acm.org>
Thu, 25 Dec 2008 09:31:40 +0000 (09:31 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8884

drd/drd.h

index b8fdc4e39b134af191b5c5686c614786ab3203d5..8c4d0e376ee84eccc0cba4b97d5e3ea74b793cd1 100644 (file)
--- a/drd/drd.h
+++ b/drd/drd.h
    which use client requests.  DO NOT CHANGE THE ORDER OF THESE
    ENTRIES, NOR DELETE ANY -- add new ones at the end.
  */
-
-
-/** Tell DRD to suppress data race detection on the specified variable. */
-#define DRD_IGNORE_VAR(x) vg_drd_ignore_range(&(x), sizeof(x))
-
-/** Tell DRD to trace all memory accesses on the specified variable. 
- *  until the memory that was allocated for the variable is freed.
- */
-#define DRD_TRACE_VAR(x) vg_drd_trace_range(&(x), sizeof(x))
-
-
 enum
 {
   /* Ask the core the thread ID assigned by Valgrind. */
@@ -106,6 +95,15 @@ enum
 };
 
 
+/** Tell DRD to suppress data race detection on the specified variable. */
+#define DRD_IGNORE_VAR(x) vg_drd_ignore_range(&(x), sizeof(x))
+
+/** Tell DRD to trace all memory accesses on the specified variable. 
+ *  until the memory that was allocated for the variable is freed.
+ */
+#define DRD_TRACE_VAR(x) vg_drd_trace_range(&(x), sizeof(x))
+
+
 static __inline__
 int vg_get_valgrind_threadid(void)
 {