mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
* vm_dump.c (rb_vm_bugreport): change CrashReporter suggestion messages
on Mac. It should be placed after "-- C level backtrace" line. Suggested by Endoh-san. <before> -- See Crash Report log file under ~/Library/Logs/CrashReporter or --------- -- /Library/Logs/CrashReporter, for the more detail of --------------------- -- C level backtrace information ------------------------------------------- <after> -- C level backtrace information ------------------------------------------- See Crash Report log file under ~/Library/Logs/CrashReporter or /Library/Logs/CrashReporter, for the more detail of. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32231 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
93e1583d73
commit
230be2a771
2 changed files with 22 additions and 6 deletions
11
vm_dump.c
11
vm_dump.c
|
@ -779,18 +779,17 @@ rb_vm_bugreport(void)
|
|||
}
|
||||
}
|
||||
|
||||
#if defined __MACH__ && defined __APPLE__
|
||||
fprintf(stderr, "-- See Crash Report log file under "
|
||||
"~/Library/Logs/CrashReporter or ---------\n");
|
||||
fprintf(stderr, "-- /Library/Logs/CrashReporter, for "
|
||||
"the more detail of ---------------------\n");
|
||||
#endif
|
||||
#if HAVE_BACKTRACE || defined(_WIN32)
|
||||
fprintf(stderr, "-- C level backtrace information "
|
||||
"-------------------------------------------\n");
|
||||
|
||||
{
|
||||
#if defined __MACH__ && defined __APPLE__
|
||||
fprintf(stderr, "\n");
|
||||
fprintf(stderr, " See Crash Report log file under "
|
||||
"~/Library/Logs/CrashReporter or\n");
|
||||
fprintf(stderr, " /Library/Logs/CrashReporter, for "
|
||||
"the more detail of.\n");
|
||||
#elif HAVE_BACKTRACE
|
||||
#define MAX_NATIVE_TRACE 1024
|
||||
static void *trace[MAX_NATIVE_TRACE];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue