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

ruby-changes:23975

From: naruse <ko1@a...>
Date: Mon, 11 Jun 2012 06:19:17 +0900 (JST)
Subject: [ruby-changes:23975] naruse:r36026 (trunk): * thread_pthread.c (native_cond_initialize): fix typo in r36022.

naruse	2012-06-11 06:19:07 +0900 (Mon, 11 Jun 2012)

  New Revision: 36026

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

  Log:
    * thread_pthread.c (native_cond_initialize): fix typo in r36022.
      this cause a failure on FreeBSD 8.2 amd64.
      http://fbsd.rubyci.org/~chkbuild/ruby-trunk/log/20120610T130201Z.diff.html.gz

  Modified files:
    trunk/ChangeLog
    trunk/thread_pthread.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 36025)
+++ ChangeLog	(revision 36026)
@@ -1,3 +1,9 @@
+Mon Jun 11 06:17:06 2012  NARUSE, Yui  <naruse@r...>
+
+	* thread_pthread.c (native_cond_initialize): fix typo in r36022.
+	  this cause a failure on FreeBSD 8.2 amd64.
+	  http://fbsd.rubyci.org/~chkbuild/ruby-trunk/log/20120610T130201Z.diff.html.gz
+
 Mon Jun 11 05:21:57 2012  Koichi Sasada  <ko1@a...>
 
 	* .gdbinit (SDR): add SDR function.  It's only for VM debugging.
Index: thread_pthread.c
===================================================================
--- thread_pthread.c	(revision 36025)
+++ thread_pthread.c	(revision 36026)
@@ -248,7 +248,7 @@
 {
 #ifdef HAVE_PTHREAD_COND_INIT
     int r;
-# ifdef HAVE_PTHREAD_COND_ATTR_INIT
+# ifdef HAVE_PTHREAD_CONDATTR_INIT
     pthread_condattr_t attr;
 
     pthread_condattr_init(&attr);

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

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