[前][次][番号順一覧][スレッド一覧]

ruby-changes:25009

From: mrkn <ko1@a...>
Date: Sun, 30 Sep 2012 23:35:10 +0900 (JST)
Subject: [ruby-changes:25009] mrkn:r37061 (trunk): * vm_dump.c (rb_vm_bugreport): add /Library/Logs/DiagnosticReports

mrkn	2012-09-30 23:34:55 +0900 (Sun, 30 Sep 2012)

  New Revision: 37061

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=37061

  Log:
    * vm_dump.c (rb_vm_bugreport): add /Library/Logs/DiagnosticReports
      in the list of locations of crash reports.

  Modified files:
    trunk/ChangeLog
    trunk/vm_dump.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 37060)
+++ ChangeLog	(revision 37061)
@@ -1,3 +1,8 @@
+Sun Sep 30 23:32:00 2012  Kenta Murata  <mrkn@m...>
+
+	* vm_dump.c (rb_vm_bugreport): add /Library/Logs/DiagnosticReports
+	  in the list of locations of crash reports.
+
 Sun Sep 30 21:18:03 2012  NARUSE, Yui  <naruse@r...>
 
 	* string.c (rb_str_concat): use memcpy to copy a string which contains
Index: vm_dump.c
===================================================================
--- vm_dump.c	(revision 37060)
+++ vm_dump.c	(revision 37061)
@@ -759,9 +759,10 @@
 #if 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");
+		"~/Library/Logs/CrashReporter,\n");
+	fprintf(stderr, "   /Library/Logs/CrashReporter, or "
+		"/Library/Logs/DiagnosticReports, for\n");
+	fprintf(stderr, "   the more detail of.\n");
 #elif HAVE_BACKTRACE
 #define MAX_NATIVE_TRACE 1024
 	static void *trace[MAX_NATIVE_TRACE];

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]