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

ruby-changes:18523

From: nobu <ko1@a...>
Date: Sat, 15 Jan 2011 09:42:25 +0900 (JST)
Subject: [ruby-changes:18523] Ruby:r30546 (trunk): * include/ruby/io.h: missing prototypes.

nobu	2011-01-15 09:42:14 +0900 (Sat, 15 Jan 2011)

  New Revision: 30546

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

  Log:
    * include/ruby/io.h: missing prototypes.

  Modified files:
    trunk/ChangeLog
    trunk/include/ruby/io.h
    trunk/version.h

Index: include/ruby/io.h
===================================================================
--- include/ruby/io.h	(revision 30545)
+++ include/ruby/io.h	(revision 30546)
@@ -149,14 +149,20 @@
 int rb_io_oflags_fmode(int oflags);
 void rb_io_check_writable(rb_io_t*);
 void rb_io_check_readable(rb_io_t*);
+void rb_io_check_char_readable(rb_io_t *fptr);
+void rb_io_check_byte_readable(rb_io_t *fptr);
 int rb_io_fptr_finalize(rb_io_t*);
 void rb_io_synchronized(rb_io_t*);
 void rb_io_check_initialized(rb_io_t*);
 void rb_io_check_closed(rb_io_t*);
+VALUE rb_io_get_io(VALUE io);
+VALUE rb_io_get_write_io(VALUE io);
+VALUE rb_io_set_write_io(VALUE io, VALUE w);
 int rb_io_wait_readable(int);
 int rb_io_wait_writable(int);
 void rb_io_set_nonblock(rb_io_t *fptr);
 int rb_io_extract_encoding_option(VALUE opt, rb_encoding **enc_p, rb_encoding **enc2_p, int *fmode_p);
+ssize_t rb_io_bufwrite(VALUE io, const void *buf, size_t size);
 
 /* compatibility for ruby 1.8 and older */
 #define rb_io_mode_flags(modestr) rb_io_modestr_fmode(modestr)
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 30545)
+++ ChangeLog	(revision 30546)
@@ -1,3 +1,7 @@
+Sat Jan 15 09:42:12 2011  Nobuyoshi Nakada  <nobu@r...>
+
+	* include/ruby/io.h: missing prototypes.
+
 Fri Jan 14 23:25:55 2011  Tanaka Akira  <akr@f...>
 
 	* vm_method.c: parenthesize macro arguments.
Index: version.h
===================================================================
--- version.h	(revision 30545)
+++ version.h	(revision 30546)
@@ -1,11 +1,11 @@
 #define RUBY_VERSION "1.9.3"
-#define RUBY_RELEASE_DATE "2011-01-14"
+#define RUBY_RELEASE_DATE "2011-01-15"
 #define RUBY_PATCHLEVEL -1
 #define RUBY_BRANCH_NAME "trunk"
 
 #define RUBY_RELEASE_YEAR 2011
 #define RUBY_RELEASE_MONTH 1
-#define RUBY_RELEASE_DAY 14
+#define RUBY_RELEASE_DAY 15
 
 #include "ruby/version.h"
 

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

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