1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* vm_dump.c (rb_vm_bugreport): add ~/Library/Logs/DiagnosticReports

in the locations list of crash reports.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37422 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mrkn 2012-11-02 07:52:56 +00:00
parent 584afabcc0
commit 8db54e07f9
2 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Fri Nov 2 16:44:00 2012 Kenta Murata <mrkn@mrkn.jp>
* vm_dump.c (rb_vm_bugreport): add ~/Library/Logs/DiagnosticReports
in the locations list of crash reports.
Fri Nov 2 14:52:52 2012 Masaki Matsushita <glass.saga@gmail.com>
* array.c (recursive_equal): performance improvement.

View file

@ -635,9 +635,10 @@ rb_vm_bugreport(void)
fprintf(stderr, "\n");
fprintf(stderr, " See Crash Report log file under "
"~/Library/Logs/CrashReporter,\n");
fprintf(stderr, " /Library/Logs/CrashReporter, or "
"/Library/Logs/DiagnosticReports, for\n");
fprintf(stderr, " the more detail of.\n");
fprintf(stderr, " ~/Library/Logs/DiagnosticReports, "
"/Library/Logs/CrashReporter,\n");
fprintf(stderr, " or /Library/Logs/DiagnosticReports "
"for the more detail of.\n");
#elif HAVE_BACKTRACE
#define MAX_NATIVE_TRACE 1024
static void *trace[MAX_NATIVE_TRACE];