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

ruby-changes:10181

From: nobu <ko1@a...>
Date: Thu, 22 Jan 2009 11:32:37 +0900 (JST)
Subject: [ruby-changes:10181] Ruby:r21725 (trunk): * thread.c (rb_time_timeval): made a real prototype. a patch from

nobu	2009-01-22 11:31:54 +0900 (Thu, 22 Jan 2009)

  New Revision: 21725

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

  Log:
    * thread.c (rb_time_timeval): made a real prototype.  a patch from
      Marcus Rueckert <darix AT opensu.se> at [ruby-core:21492].

  Modified files:
    trunk/ChangeLog
    trunk/thread.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 21724)
+++ ChangeLog	(revision 21725)
@@ -1,3 +1,8 @@
+Thu Jan 22 11:33:08 2009  Nobuyoshi Nakada  <nobu@r...>
+
+	* thread.c (rb_time_timeval): made a real prototype.  a patch from
+	  Marcus Rueckert <darix AT opensu.se> at [ruby-core:21492].
+
 Wed Jan 21 21:43:50 2009  Nobuyoshi Nakada  <nobu@r...>
 
 	* io.c (rb_io_ungetbyte, rb_io_ungetc): allows nil to reset EOF
Index: thread.c
===================================================================
--- thread.c	(revision 21724)
+++ thread.c	(revision 21725)
@@ -917,7 +917,7 @@
     return RUBY_VM_INTERRUPTED(th);
 }
 
-struct timeval rb_time_timeval();
+struct timeval rb_time_timeval(VALUE);
 
 void
 rb_thread_sleep(int sec)

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

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