]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Moved VG_BUGS_TO out of basic_types.h into libcassert.h.
authorNicholas Nethercote <njn@valgrind.org>
Sat, 18 Jun 2005 02:25:16 +0000 (02:25 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Sat, 18 Jun 2005 02:25:16 +0000 (02:25 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3928

auxprogs/valgrind-listener.c
corecheck/cc_main.c
include/basic_types.h
include/pub_tool_libcassert.h
none/nl_main.c

index 56ff007d203c528e6c3a952e880628bf4d1a24ec..c8db19d8547edd6f5017e63720f0b836875f2b98 100644 (file)
 #include <sys/socket.h>
 #include <netinet/in.h>
 
-
-/* For VG_CLO_DEFAULT_LOGPORT and VG_BUGS_TO. */
 #include "core.h"
-#include "pub_core_options.h"
+#include "pub_core_libcassert.h"    // For VG_BUGS_TO
+#include "pub_core_options.h"       // For VG_CLO_DEFAULT_LOGPORT
 
 
 /*---------------------------------------------------------------*/
index bae14a82dc6e23372ec4d612b3df920d920d502c..61f92554277c5d74c9754afd132a207908bacfa6 100644 (file)
@@ -30,6 +30,7 @@
 */
 
 #include "tool.h"
+#include "pub_tool_libcassert.h"
 #include "pub_tool_tooliface.h"
 
 static void cc_post_clo_init(void)
index fa517097299a4930211892881eec5478867ecfd4..64dea28bd01807f242c95cb608b727e40405d991 100644 (file)
@@ -101,13 +101,6 @@ typedef
    }
    SysRes;
 
-/* ---------------------------------------------------------------------
-   Where to send bug reports to.
-   ------------------------------------------------------------------ */
-
-#define VG_BUGS_TO "www.valgrind.org"
-
-
 #endif /* __BASIC_TYPES_H */
 
 /*--------------------------------------------------------------------*/
index 079485f2aea2953b5d820955bedaae76da75542a..46616f04a395f7ea77954817aa1ff59686782bb6 100644 (file)
@@ -31,6 +31,9 @@
 #ifndef __PUB_TOOL_LIBCBASSERT_H
 #define __PUB_TOOL_LIBCBASSERT_H
 
+// Where to send bug reports to.
+#define VG_BUGS_TO "www.valgrind.org"
+
 #define tl_assert(expr)                                                 \
   ((void) ((expr) ? 0 :                                                 \
            (VG_(assert_fail) (/*isCore?*/False, #expr,                  \
index c2e680ba4d9adcc28372b8ce00359b29f26ae28c..30088c5b20cf1e7ef5cc991935c997b51a5e47ee 100644 (file)
@@ -29,6 +29,7 @@
 */
 
 #include "tool.h"
+#include "pub_tool_libcassert.h"
 #include "pub_tool_tooliface.h"
 
 static void nl_post_clo_init(void)