]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
report_and_quit: Tell people to look at the FAQ.txt for advice.
authorJulian Seward <jseward@acm.org>
Sat, 26 Apr 2003 22:36:42 +0000 (22:36 +0000)
committerJulian Seward <jseward@acm.org>
Sat, 26 Apr 2003 22:36:42 +0000 (22:36 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1568

coregrind/vg_mylibc.c

index 365b76b0903db77b8252522a5dfff1b8d6820c31..a7ff0be9250a9ed4ebe00d47034754ffdda85daf 100644 (file)
@@ -1077,7 +1077,14 @@ __attribute__ ((noreturn))
 static void report_and_quit ( Char* report )
 {
    VG_(pp_sched_status)();
-   VG_(printf)("Please report this bug to: %s\n\n", report);
+   VG_(printf)("\n");
+   VG_(printf)("Note: see also the FAQ.txt in the source distribution.\n");
+   VG_(printf)("It contains workarounds to several common problems.\n");
+   VG_(printf)("\n");
+   VG_(printf)("If that doesn't help, please report this bug to: %s\n\n", 
+               report);
+   VG_(printf)("In the bug report, send all the above text, the valgrind\n");
+   VG_(printf)("version, and what Linux distro you are using.  Thanks.\n");
    VG_(shutdown_logging)();
    VG_(exit)(1);
 }