]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Updated all "report bugs to..." messages to point to valgrind.kde.org; also
authorNicholas Nethercote <n.nethercote@gmail.com>
Thu, 20 Nov 2003 16:20:55 +0000 (16:20 +0000)
committerNicholas Nethercote <n.nethercote@gmail.com>
Thu, 20 Nov 2003 16:20:55 +0000 (16:20 +0000)
updated the docs to refer to valgrind.kde.org instead of the old website.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2055

18 files changed:
addrcheck/ac_main.c
auxprogs/valgrind-listener.c
cachegrind/cg_main.c
cachegrind/docs/cg_techdocs.html
corecheck/cc_main.c
coregrind/arch/x86-linux/vg_libpthread.c
coregrind/docs/coregrind_core.html
coregrind/vg_include.h
coregrind/vg_intercept.c
coregrind/vg_libpthread.c
coregrind/vg_main.c
coregrind/vg_mylibc.c
helgrind/hg_main.c
include/vg_skin.h
lackey/lk_main.c
memcheck/docs/mc_techdocs.html
memcheck/mc_main.c
none/nl_main.c

index 5407e139351662a8f1d60df52ea705f46aa0e735..e47fd0a5f71e8f7bb368e26d73fe671a3f54b3da 100644 (file)
@@ -1278,7 +1278,7 @@ void SK_(pre_clo_init)(void)
    VG_(details_description)     ("a fine-grained address checker");
    VG_(details_copyright_author)(
       "Copyright (C) 2002-2003, and GNU GPL'd, by Julian Seward.");
-   VG_(details_bug_reports_to)  ("jseward@acm.org");
+   VG_(details_bug_reports_to)  (VG_BUGS_TO);
    VG_(details_avg_translation_sizeB) ( 135 );
 
    VG_(needs_core_errors)         ();
index e8442e48d9ac18c2a522ad8c93329fa4231a1589..d943c4aa24372b7e42fa6eb9106f942a88795d5f 100644 (file)
@@ -45,7 +45,7 @@
 #include <netinet/in.h>
 
 
-/* For VG_CLO_DEFAULT_LOGPORT and VG_EMAIL_ADDR. */
+/* For VG_CLO_DEFAULT_LOGPORT and VG_BUGS_TO. */
 #include "vg_include.h"
 
 
@@ -64,7 +64,7 @@ static void panic ( Char* str )
            "\nvalgrind-listener: the "
            "`impossible' happened:\n   %s\n", str);
    fprintf(stderr,
-           "Please report this bug to: %s\n\n", VG_EMAIL_ADDR);
+           "Please report this bug at: %s\n\n", VG_BUGS_TO);
    exit(1);
 }
 
@@ -75,7 +75,7 @@ static void my_assert_fail ( const Char* expr, const Char* file, Int line, const
            "\nvalgrind-listener: %s:%d (%s): Assertion `%s' failed.\n",
            file, line, fn, expr );
    fprintf(stderr,
-           "Please report this bug to: %s\n\n", VG_EMAIL_ADDR);
+           "Please report this bug at: %s\n\n", VG_BUGS_TO);
    exit(1);
 }
 
index 9287ae0da9138ea34a295e462a9e89fe768dd231..e15b411dd0ce5d1a17cc5761bd93c6b188ff41a4 100644 (file)
@@ -2024,7 +2024,7 @@ void SK_(pre_clo_init)(void)
    VG_(details_description)     ("an I1/D1/L2 cache profiler");
    VG_(details_copyright_author)(
       "Copyright (C) 2002-2003, and GNU GPL'd, by Nicholas Nethercote.");
-   VG_(details_bug_reports_to)  ("njn25@cam.ac.uk");
+   VG_(details_bug_reports_to)  (VG_BUGS_TO);
    VG_(details_avg_translation_sizeB) ( 155 );
 
    VG_(needs_basic_block_discards)();
index 95f29c00180c6ddc4d46b5110ab0cb0d38c361c9..0ac5b6759649d0c29f08080f76b815c7937e4abf 100644 (file)
@@ -33,7 +33,7 @@ overly-curious<br>
 <p>
 <a href="mailto:njn25@cam.ac.uk">njn25@cam.ac.uk</a><br>
 <a
-href="http://developer.kde.org/~sewardj">http://developer.kde.org/~sewardj</a><br>
+href="http://valgrind.kde.org">http://valgrind.kde.org</a><br>
 <p>
 Copyright &copy; 2001-2003 Nick Nethercote
 <p>
index 86a150de43de51f4d8243b986649f4fbe64489df..13634c14a94afd34a2d32b6a71cce3b535bb52c5 100644 (file)
@@ -40,7 +40,7 @@ void SK_(pre_clo_init)(void)
    VG_(details_description)     ("a rudimentary error detector");
    VG_(details_copyright_author)(
       "Copyright (C) 2002-2003, and GNU GPL'd, by Nicholas Nethercote.");
-   VG_(details_bug_reports_to)  ("njn25@cam.ac.uk");
+   VG_(details_bug_reports_to)  (VG_BUGS_TO);
 
    VG_(needs_core_errors)();
 
index af9dc1e8948aaebb054419101b87876801e57dcf..85284965c5687cb26c9fea47d7ce65bca3f260f4 100644 (file)
@@ -170,6 +170,8 @@ void barf ( const char* str )
    char buf[1000];
    strcpy(buf, "\nvalgrind's libpthread.so: ");
    strcat(buf, str);
+   strcat(buf, "\nPlease report this bug at: ");
+   strcat(buf, VG_BUGS_TO);
    strcat(buf, "\n\n");
    VALGRIND_NON_SIMD_CALL2(VG_(message), Vg_UserMsg, buf);
    my_exit(1);
@@ -211,7 +213,7 @@ __attribute__((noreturn))
 void vgPlain_unimp ( char* fn )
 {
    cat_n_send ( "valgrind's libpthread.so: UNIMPLEMENTED FUNCTION: ", fn, "" );
-   barf("Please report this bug to me at: jseward@acm.org");
+   barf("unimplemented function");
 }
 
 
@@ -226,7 +228,7 @@ void my_assert_fail ( const Char* expr, const Char* file, Int line, const Char*
    sprintf(buf, "\n%s: %s:%d (%s): Assertion `%s' failed.\n",
                 "valgrind", file, line, fn, expr );
    cat_n_send ( "", buf, "" );
-   sprintf(buf, "Please report this bug to me at: %s\n\n", VG_EMAIL_ADDR);
+   sprintf(buf, "Please report this bug at: %s\n\n", VG_BUGS_TO);
    my_exit(1);
 }
 
index 6afcba22c89bb8245b680f791875a7c487f5d9ee..a2930cc261a235603614e9193c2c86fb56d9f3f9 100644 (file)
@@ -1160,7 +1160,7 @@ build problems.
 
 <a name="problems"></a>
 <h3>2.11&nbsp; If you have problems</h3>
-Mail me (<a href="mailto:jseward@acm.org">jseward@acm.org</a>).
+Contact us at <a href="http://valgrind.kde.org">valgrind.kde.org</a>.
 
 <p>See <a href="#limits">this section</a> for the known limitations of
 Valgrind, and for a list of programs which are known not to work on
index c6b49b3408b00756ec9cd9b83b15c7adeb62e84f..72c9323b757327c995d9b3aa737f3f9e4e1a66b5 100644 (file)
 #ifndef __VG_INCLUDE_H
 #define __VG_INCLUDE_H
 
-/* ---------------------------------------------------------------------
-   Where to send bug reports to.
-   ------------------------------------------------------------------ */
-
-#define VG_EMAIL_ADDR "jseward@acm.org"
-
-
 /* ---------------------------------------------------------------------
    Build options and table sizes.  You should be able to change these
    options or sizes, recompile, and still have a working system.
index 31211392f1c689989fa86da7ea31df293e29e905..8af508b2d7729d580ef04db3d83d84d31cf56af8 100644 (file)
@@ -134,9 +134,7 @@ void my_assert_fail ( const Char* expr, const Char* file, Int line, const Char*
    sprintf(buf, "\n%s: %s:%d (%s): Assertion `%s' failed.\n",
                 "valgrind", file, line, fn, expr );
    cat_n_send ( "", buf );
-   sprintf(buf, "Please report this bug to me at: %s\n\n", 
-                 VG_EMAIL_ADDR);
-   cat_n_send ( "", buf );
+   sprintf(buf, "Please report this bug at: %s\n\n", VG_BUGS_TO);
    my_exit(1);
 }
 
index af9dc1e8948aaebb054419101b87876801e57dcf..85284965c5687cb26c9fea47d7ce65bca3f260f4 100644 (file)
@@ -170,6 +170,8 @@ void barf ( const char* str )
    char buf[1000];
    strcpy(buf, "\nvalgrind's libpthread.so: ");
    strcat(buf, str);
+   strcat(buf, "\nPlease report this bug at: ");
+   strcat(buf, VG_BUGS_TO);
    strcat(buf, "\n\n");
    VALGRIND_NON_SIMD_CALL2(VG_(message), Vg_UserMsg, buf);
    my_exit(1);
@@ -211,7 +213,7 @@ __attribute__((noreturn))
 void vgPlain_unimp ( char* fn )
 {
    cat_n_send ( "valgrind's libpthread.so: UNIMPLEMENTED FUNCTION: ", fn, "" );
-   barf("Please report this bug to me at: jseward@acm.org");
+   barf("unimplemented function");
 }
 
 
@@ -226,7 +228,7 @@ void my_assert_fail ( const Char* expr, const Char* file, Int line, const Char*
    sprintf(buf, "\n%s: %s:%d (%s): Assertion `%s' failed.\n",
                 "valgrind", file, line, fn, expr );
    cat_n_send ( "", buf, "" );
-   sprintf(buf, "Please report this bug to me at: %s\n\n", VG_EMAIL_ADDR);
+   sprintf(buf, "Please report this bug at: %s\n\n", VG_BUGS_TO);
    my_exit(1);
 }
 
index 4742a29bab4cf5b29bb1aa27529ffa4f54efd32d..0ddbd1be17794335a09b538ba386db2b28cb8fd7 100644 (file)
@@ -728,7 +728,7 @@ static void usage ( void )
       SK_(print_debug_usage)();
    else
       VG_(printf)("    (none)\n");
-   VG_(printf)(usage3, VG_EMAIL_ADDR);
+   VG_(printf)(usage3, VG_BUGS_TO);
 
    VG_(shutdown_logging)();
    VG_(clo_log_to)     = VgLogTo_Fd;
@@ -1990,9 +1990,9 @@ void VG_(unimplemented) ( Char* msg )
    VG_(message)(Vg_UserMsg,
       "or because no reasonable program would behave this way,");
    VG_(message)(Vg_UserMsg,
-      "or because nobody has yet needed it.  In any case, let me know");
+      "or because nobody has yet needed it.  In any case, let us know at");
    VG_(message)(Vg_UserMsg,
-      "(jseward@acm.org) and/or try to work around the problem, if you can.");
+      "%s and/or try to work around the problem, if you can.", VG_BUGS_TO);
    VG_(message)(Vg_UserMsg,
       "");
    VG_(message)(Vg_UserMsg,
index 3693d91241c345f881c3aa018dce6d748551fc53..1fe9d97d3bb78d22bb542a2705ccd7c93b81ad4a 100644 (file)
@@ -1106,7 +1106,7 @@ void VG_(skin_assert_fail) ( const Char* expr, const Char* file, Int line, const
 
 void VG_(core_assert_fail) ( const Char* expr, const Char* file, Int line, const Char* fn )
 {
-   assert_fail(expr, "valgrind", VG_EMAIL_ADDR, file, line, fn);
+   assert_fail(expr, "valgrind", VG_BUGS_TO, file, line, fn);
 }
 
 __attribute__ ((noreturn))
@@ -1119,7 +1119,7 @@ static void panic ( Char* name, Char* report, Char* str )
 
 void VG_(core_panic) ( Char* str )
 {
-   panic("valgrind", VG_EMAIL_ADDR, str);
+   panic("valgrind", VG_BUGS_TO, str);
 }
 
 void VG_(skin_panic) ( Char* str )
index c6fddbe71bd7d28413eaa209ffcc6ed7dfa1146b..d202b167d6211c25fb7e973863227abc6293415f 100644 (file)
@@ -3238,7 +3238,7 @@ void SK_(pre_clo_init)(void)
    VG_(details_description)     ("a data race detector");
    VG_(details_copyright_author)(
       "Copyright (C) 2002-2003, and GNU GPL'd, by Nicholas Nethercote.");
-   VG_(details_bug_reports_to)  ("jeremy@goop.org");
+   VG_(details_bug_reports_to)  (VG_BUGS_TO);
    VG_(details_avg_translation_sizeB) ( 115 );
 
    VG_(needs_core_errors)();
index ba23074e3a91e2e90aee8d83cd3010f06c32f037..5e74d98791f07e0e3f97792818eb140f03c10b88 100644 (file)
 #include "vg_constants_skin.h"
 
 
+/* ---------------------------------------------------------------------
+   Where to send bug reports to.
+   ------------------------------------------------------------------ */
+
+#define VG_BUGS_TO "valgrind.kde.org"
+
+
 /*====================================================================*/
 /*=== Build options and table sizes.                               ===*/
 /*====================================================================*/
index a68841b4c49886cf6a862f4e090bd2196e09598d..79f9b9d838300fbc0f951aec0b2637609271b58e 100644 (file)
@@ -81,7 +81,7 @@ void SK_(pre_clo_init)(void)
    VG_(details_description)     ("an example Valgrind tool");
    VG_(details_copyright_author)(
       "Copyright (C) 2002-2003, and GNU GPL'd, by Nicholas Nethercote.");
-   VG_(details_bug_reports_to)  ("njn25@cam.ac.uk");
+   VG_(details_bug_reports_to)  (VG_BUGS_TO);
    VG_(details_avg_translation_sizeB) ( 175 );
 
    VG_(register_compact_helper)((Addr) & add_one_dlrr_call);
index 92b7cceb987540c102952ab6b46068f95f1931e7..f734fc41ce9000d41858265d8bf53ff6d8aec70b 100644 (file)
@@ -33,7 +33,7 @@ overly-curious<br>
 These notes pertain to snapshot 20020306<br>
 <p>
 <a href="mailto:jseward@acm.org">jseward@acm.org</a><br>
-<a href="http://developer.kde.org/~sewardj">http://developer.kde.org/~sewardj</a><br>
+<a href="http://valgrind.kde.org">http://valgrind.kde.org</a><br>
 Copyright &copy; 2000-2003 Julian Seward
 <p>
 Valgrind is licensed under the GNU General Public License, 
index 52ad0323e79decc936327ae3227d709ba131bdae..8b46797ac5c41c0c9c29c96ed8e219cc272bac0d 100644 (file)
@@ -1659,7 +1659,7 @@ void SK_(pre_clo_init)(void)
    VG_(details_description)     ("a memory error detector");
    VG_(details_copyright_author)(
       "Copyright (C) 2002-2003, and GNU GPL'd, by Julian Seward.");
-   VG_(details_bug_reports_to)  ("jseward@acm.org");
+   VG_(details_bug_reports_to)  (VG_BUGS_TO);
    VG_(details_avg_translation_sizeB) ( 228 );
 
    VG_(needs_core_errors)         ();
index ee2edb701d564251e647ca81803597d0059f170a..844c63e70382e2a0b1fe824b08371650312f5344 100644 (file)
@@ -39,7 +39,7 @@ void SK_(pre_clo_init)(void)
    VG_(details_description)     ("a binary JIT-compiler");
    VG_(details_copyright_author)(
       "Copyright (C) 2002-2003, and GNU GPL'd, by Nicholas Nethercote.");
-   VG_(details_bug_reports_to)  ("njn25@cam.ac.uk");
+   VG_(details_bug_reports_to)  (VG_BUGS_TO);
 
    /* No needs, no core events to track */
 }