|
From: Nicholas N. <nj...@ca...> - 2003-11-20 16:21:29
|
CVS commit by nethercote: Updated all "report bugs to..." messages to point to valgrind.kde.org; also updated the docs to refer to valgrind.kde.org instead of the old website. M +1 -1 addrcheck/ac_main.c 1.55 M +3 -3 auxprogs/valgrind-listener.c 1.11 M +1 -1 cachegrind/cg_main.c 1.57 M +1 -1 cachegrind/docs/cg_techdocs.html 1.4 M +1 -1 corecheck/cc_main.c 1.17 M +0 -7 coregrind/vg_include.h 1.156 M +1 -3 coregrind/vg_intercept.c 1.25 [POSSIBLY UNSAFE: printf] M +4 -2 coregrind/vg_libpthread.c 1.140 [POSSIBLY UNSAFE: printf] M +3 -3 coregrind/vg_main.c 1.125 M +2 -2 coregrind/vg_mylibc.c 1.58 M +1 -1 coregrind/docs/coregrind_core.html 1.18 M +1 -1 helgrind/hg_main.c 1.67 M +7 -0 include/vg_skin.h 1.101 M +1 -1 lackey/lk_main.c 1.21 M +1 -1 memcheck/mc_main.c 1.42 M +1 -1 memcheck/docs/mc_techdocs.html 1.7 M +1 -1 none/nl_main.c 1.16 --- valgrind/addrcheck/ac_main.c #1.54:1.55 @@ -1279,5 +1279,5 @@ void SK_(pre_clo_init)(void) VG_(details_copyright_author)( "Copyright (C) 2002-2003, and GNU GPL'd, by Julian Seward."); - VG_(details_bug_reports_to) ("js...@ac..."); + VG_(details_bug_reports_to) (VG_BUGS_TO); VG_(details_avg_translation_sizeB) ( 135 ); --- valgrind/auxprogs/valgrind-listener.c #1.10:1.11 @@ -46,5 +46,5 @@ -/* For VG_CLO_DEFAULT_LOGPORT and VG_EMAIL_ADDR. */ +/* For VG_CLO_DEFAULT_LOGPORT and VG_BUGS_TO. */ #include "vg_include.h" @@ -65,5 +65,5 @@ static void panic ( Char* str ) "`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); } @@ -76,5 +76,5 @@ static void my_assert_fail ( const Char* 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); } --- valgrind/cachegrind/cg_main.c #1.56:1.57 @@ -2025,5 +2025,5 @@ void SK_(pre_clo_init)(void) VG_(details_copyright_author)( "Copyright (C) 2002-2003, and GNU GPL'd, by Nicholas Nethercote."); - VG_(details_bug_reports_to) ("nj...@ca..."); + VG_(details_bug_reports_to) (VG_BUGS_TO); VG_(details_avg_translation_sizeB) ( 155 ); --- valgrind/cachegrind/docs/cg_techdocs.html #1.3:1.4 @@ -34,5 +34,5 @@ <a href="mailto:nj...@ca...">nj...@ca...</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 © 2001-2003 Nick Nethercote --- valgrind/corecheck/cc_main.c #1.16:1.17 @@ -41,5 +41,5 @@ void SK_(pre_clo_init)(void) VG_(details_copyright_author)( "Copyright (C) 2002-2003, and GNU GPL'd, by Nicholas Nethercote."); - VG_(details_bug_reports_to) ("nj...@ca..."); + VG_(details_bug_reports_to) (VG_BUGS_TO); VG_(needs_core_errors)(); --- valgrind/coregrind/vg_include.h #1.155:1.156 @@ -35,11 +35,4 @@ /* --------------------------------------------------------------------- - Where to send bug reports to. - ------------------------------------------------------------------ */ - -#define VG_EMAIL_ADDR "js...@ac..." - - -/* --------------------------------------------------------------------- Build options and table sizes. You should be able to change these options or sizes, recompile, and still have a working system. --- valgrind/coregrind/vg_intercept.c #1.24:1.25 @@ -135,7 +135,5 @@ void my_assert_fail ( const Char* expr, "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); } --- valgrind/coregrind/vg_libpthread.c #1.139:1.140 @@ -171,4 +171,6 @@ void barf ( const char* str ) 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); @@ -212,5 +214,5 @@ void vgPlain_unimp ( char* fn ) { cat_n_send ( "valgrind's libpthread.so: UNIMPLEMENTED FUNCTION: ", fn, "" ); - barf("Please report this bug to me at: js...@ac..."); + barf("unimplemented function"); } @@ -227,5 +229,5 @@ void my_assert_fail ( const Char* expr, "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); } --- valgrind/coregrind/vg_main.c #1.124:1.125 @@ -729,5 +729,5 @@ static void usage ( void ) else VG_(printf)(" (none)\n"); - VG_(printf)(usage3, VG_EMAIL_ADDR); + VG_(printf)(usage3, VG_BUGS_TO); VG_(shutdown_logging)(); @@ -1991,7 +1991,7 @@ void VG_(unimplemented) ( Char* msg ) "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, - "(js...@ac...) 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, ""); --- valgrind/coregrind/vg_mylibc.c #1.57:1.58 @@ -1107,5 +1107,5 @@ void VG_(skin_assert_fail) ( const Char* 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); } @@ -1120,5 +1120,5 @@ static void panic ( Char* name, Char* re void VG_(core_panic) ( Char* str ) { - panic("valgrind", VG_EMAIL_ADDR, str); + panic("valgrind", VG_BUGS_TO, str); } --- valgrind/coregrind/docs/coregrind_core.html #1.17:1.18 @@ -1161,5 +1161,5 @@ <a name="problems"></a> <h3>2.11 If you have problems</h3> -Mail me (<a href="mailto:js...@ac...">js...@ac...</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/helgrind/hg_main.c #1.66:1.67 @@ -3239,5 +3239,5 @@ void SK_(pre_clo_init)(void) VG_(details_copyright_author)( "Copyright (C) 2002-2003, and GNU GPL'd, by Nicholas Nethercote."); - VG_(details_bug_reports_to) ("je...@go..."); + VG_(details_bug_reports_to) (VG_BUGS_TO); VG_(details_avg_translation_sizeB) ( 115 ); --- valgrind/include/vg_skin.h #1.100:1.101 @@ -39,4 +39,11 @@ +/* --------------------------------------------------------------------- + Where to send bug reports to. + ------------------------------------------------------------------ */ + +#define VG_BUGS_TO "valgrind.kde.org" + + /*====================================================================*/ /*=== Build options and table sizes. ===*/ --- valgrind/lackey/lk_main.c #1.20:1.21 @@ -82,5 +82,5 @@ void SK_(pre_clo_init)(void) VG_(details_copyright_author)( "Copyright (C) 2002-2003, and GNU GPL'd, by Nicholas Nethercote."); - VG_(details_bug_reports_to) ("nj...@ca..."); + VG_(details_bug_reports_to) (VG_BUGS_TO); VG_(details_avg_translation_sizeB) ( 175 ); --- valgrind/memcheck/mc_main.c #1.41:1.42 @@ -1660,5 +1660,5 @@ void SK_(pre_clo_init)(void) VG_(details_copyright_author)( "Copyright (C) 2002-2003, and GNU GPL'd, by Julian Seward."); - VG_(details_bug_reports_to) ("js...@ac..."); + VG_(details_bug_reports_to) (VG_BUGS_TO); VG_(details_avg_translation_sizeB) ( 228 ); --- valgrind/memcheck/docs/mc_techdocs.html #1.6:1.7 @@ -34,5 +34,5 @@ <p> <a href="mailto:js...@ac...">js...@ac...</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 © 2000-2003 Julian Seward <p> --- valgrind/none/nl_main.c #1.15:1.16 @@ -40,5 +40,5 @@ void SK_(pre_clo_init)(void) VG_(details_copyright_author)( "Copyright (C) 2002-2003, and GNU GPL'd, by Nicholas Nethercote."); - VG_(details_bug_reports_to) ("nj...@ca..."); + VG_(details_bug_reports_to) (VG_BUGS_TO); /* No needs, no core events to track */ |