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

ruby-changes:20085

From: ko1 <ko1@a...>
Date: Fri, 17 Jun 2011 02:32:03 +0900 (JST)
Subject: [ruby-changes:20085] ko1:r32132 (trunk): * thread_pthread.c (native_thread_create): fix debug message.

ko1	2011-06-17 02:28:54 +0900 (Fri, 17 Jun 2011)

  New Revision: 32132

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

  Log:
    * thread_pthread.c (native_thread_create): fix debug message.
      (add last newline)

  Modified files:
    trunk/ChangeLog
    trunk/thread_pthread.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 32131)
+++ ChangeLog	(revision 32132)
@@ -1,3 +1,8 @@
+Fri Jun 17 02:26:47 2011  Koichi Sasada  <ko1@a...>
+
+	* thread_pthread.c (native_thread_create): fix debug message.
+	  (add last newline)
+
 Thu Jun 16 23:40:49 2011  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
 	* thread.c (rb_thread_schedule_rec): fix {UN,}LIKELY macro misuse.
Index: thread_pthread.c
===================================================================
--- thread_pthread.c	(revision 32131)
+++ thread_pthread.c	(revision 32132)
@@ -769,7 +769,7 @@
 	CHECK_ERR(pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED));
 
 	err = pthread_create(&th->thread_id, &attr, thread_start_func_1, th);
-	thread_debug("create: %p (%d)", (void *)th, err);
+	thread_debug("create: %p (%d)\n", (void *)th, err);
 	CHECK_ERR(pthread_attr_destroy(&attr));
     }
     return err;

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

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