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

ruby-changes:18992

From: nagachika <ko1@a...>
Date: Sat, 5 Mar 2011 23:02:07 +0900 (JST)
Subject: [ruby-changes:18992] Ruby:r31028 (trunk): * include/ruby/intern.h: fix a typo of prototype declaration.

nagachika	2011-03-05 22:59:21 +0900 (Sat, 05 Mar 2011)

  New Revision: 31028

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

  Log:
    * include/ruby/intern.h: fix a typo of prototype declaration.
          rb_mutex_try_lock -> rb_mutex_trylock [ruby-dev:43213]

  Modified files:
    trunk/ChangeLog
    trunk/include/ruby/intern.h

Index: include/ruby/intern.h
===================================================================
--- include/ruby/intern.h	(revision 31027)
+++ include/ruby/intern.h	(revision 31028)
@@ -802,7 +802,7 @@
 #define RUBY_UBF_PROCESS ((rb_unblock_function_t *)-1)
 VALUE rb_mutex_new(void);
 VALUE rb_mutex_locked_p(VALUE mutex);
-VALUE rb_mutex_try_lock(VALUE mutex);
+VALUE rb_mutex_trylock(VALUE mutex);
 VALUE rb_mutex_lock(VALUE mutex);
 VALUE rb_mutex_unlock(VALUE mutex);
 VALUE rb_mutex_sleep(VALUE self, VALUE timeout);
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 31027)
+++ ChangeLog	(revision 31028)
@@ -1,3 +1,8 @@
+Sat Mar  5 22:54:36 2011  CHIKANAGA Tomoyuki  <nagachika00@g...>
+
+	* include/ruby/intern.h: fix a typo of prototype declaration.
+	  rb_mutex_try_lock -> rb_mutex_trylock [ruby-dev:43213]
+
 Sat Mar  5 19:44:03 2011  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
 	* test/ruby/test_io.rb (TestIO#test_fcntl_lock): small clean up.

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

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