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:
parent
584afabcc0
commit
8db54e07f9
2 changed files with 9 additions and 3 deletions
|
@ -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>
|
Fri Nov 2 14:52:52 2012 Masaki Matsushita <glass.saga@gmail.com>
|
||||||
|
|
||||||
* array.c (recursive_equal): performance improvement.
|
* array.c (recursive_equal): performance improvement.
|
||||||
|
|
|
@ -635,9 +635,10 @@ rb_vm_bugreport(void)
|
||||||
fprintf(stderr, "\n");
|
fprintf(stderr, "\n");
|
||||||
fprintf(stderr, " See Crash Report log file under "
|
fprintf(stderr, " See Crash Report log file under "
|
||||||
"~/Library/Logs/CrashReporter,\n");
|
"~/Library/Logs/CrashReporter,\n");
|
||||||
fprintf(stderr, " /Library/Logs/CrashReporter, or "
|
fprintf(stderr, " ~/Library/Logs/DiagnosticReports, "
|
||||||
"/Library/Logs/DiagnosticReports, for\n");
|
"/Library/Logs/CrashReporter,\n");
|
||||||
fprintf(stderr, " the more detail of.\n");
|
fprintf(stderr, " or /Library/Logs/DiagnosticReports "
|
||||||
|
"for the more detail of.\n");
|
||||||
#elif HAVE_BACKTRACE
|
#elif HAVE_BACKTRACE
|
||||||
#define MAX_NATIVE_TRACE 1024
|
#define MAX_NATIVE_TRACE 1024
|
||||||
static void *trace[MAX_NATIVE_TRACE];
|
static void *trace[MAX_NATIVE_TRACE];
|
||||||
|
|
Loading…
Add table
Reference in a new issue