mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
vm_dump.c: preface_dump
* vm_dump.c (preface_dump): move platform specific preface. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50471 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
297344e198
commit
92430a031d
1 changed files with 21 additions and 12 deletions
33
vm_dump.c
33
vm_dump.c
|
@ -936,6 +936,25 @@ rb_dump_machine_register(const ucontext_t *ctx)
|
|||
# define rb_dump_machine_register(ctx) ((void)0)
|
||||
#endif /* HAVE_PRINT_MACHINE_REGISTERS */
|
||||
|
||||
static void
|
||||
preface_dump(void)
|
||||
{
|
||||
#if defined __APPLE__
|
||||
static const char msg[] = ""
|
||||
"-- Crash Report log information "
|
||||
"--------------------------------------------\n"
|
||||
" See Crash Report log file under the one of following:\n"
|
||||
" * ~/Library/Logs/CrashReporter\n"
|
||||
" * /Library/Logs/CrashReporter\n"
|
||||
" * ~/Library/Logs/DiagnosticReports\n"
|
||||
" * /Library/Logs/DiagnosticReports\n"
|
||||
" for more details.\n"
|
||||
"\n";
|
||||
|
||||
fputs(msg, stderr);
|
||||
#endif
|
||||
}
|
||||
|
||||
void
|
||||
rb_vm_bugreport(const void *ctx)
|
||||
{
|
||||
|
@ -949,18 +968,8 @@ rb_vm_bugreport(const void *ctx)
|
|||
#endif
|
||||
const rb_vm_t *const vm = GET_VM();
|
||||
|
||||
#if defined __APPLE__
|
||||
fputs("-- Crash Report log information "
|
||||
"--------------------------------------------\n"
|
||||
" See Crash Report log file under the one of following:\n"
|
||||
" * ~/Library/Logs/CrashReporter\n"
|
||||
" * /Library/Logs/CrashReporter\n"
|
||||
" * ~/Library/Logs/DiagnosticReports\n"
|
||||
" * /Library/Logs/DiagnosticReports\n"
|
||||
" for more details.\n"
|
||||
"\n",
|
||||
stderr);
|
||||
#endif
|
||||
preface_dump();
|
||||
|
||||
if (vm) {
|
||||
SDR();
|
||||
rb_backtrace_print_as_bugreport();
|
||||
|
|
Loading…
Add table
Reference in a new issue