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

ruby-changes:25365

From: mrkn <ko1@a...>
Date: Fri, 2 Nov 2012 16:53:08 +0900 (JST)
Subject: [ruby-changes:25365] mrkn:r37422 (trunk): * vm_dump.c (rb_vm_bugreport): add ~/Library/Logs/DiagnosticReports

mrkn	2012-11-02 16:52:56 +0900 (Fri, 02 Nov 2012)

  New Revision: 37422

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

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

  Modified files:
    trunk/ChangeLog
    trunk/vm_dump.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 37421)
+++ ChangeLog	(revision 37422)
@@ -1,3 +1,8 @@
+Fri Nov  2 16:44:00 2012  Kenta Murata  <mrkn@m...>
+
+	* 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@g...>
 
 	* array.c (recursive_equal): performance improvement.
Index: vm_dump.c
===================================================================
--- vm_dump.c	(revision 37421)
+++ vm_dump.c	(revision 37422)
@@ -635,9 +635,10 @@
 	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];

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

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