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

ruby-changes:11713

From: nobu <ko1@a...>
Date: Thu, 7 May 2009 13:10:47 +0900 (JST)
Subject: [ruby-changes:11713] Ruby:r23355 (trunk): * io.c (pipe_open): should be rb_pid_t.

nobu	2009-05-07 13:10:27 +0900 (Thu, 07 May 2009)

  New Revision: 23355

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

  Log:
    * io.c (pipe_open): should be rb_pid_t.

  Modified files:
    trunk/ChangeLog
    trunk/io.c
    trunk/version.h

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 23354)
+++ ChangeLog	(revision 23355)
@@ -1,3 +1,7 @@
+Thu May  7 13:10:25 2009  Nobuyoshi Nakada  <nobu@r...>
+
+	* io.c (pipe_open): should be rb_pid_t.
+
 Wed May  6 16:50:20 2009  Tanaka Akira  <akr@f...>
 
 	* math.c (math_gamma): use a table for positive small integers.
Index: io.c
===================================================================
--- io.c	(revision 23354)
+++ io.c	(revision 23355)
@@ -4593,7 +4593,7 @@
 static VALUE
 pipe_open(struct rb_exec_arg *eargp, VALUE prog, const char *modestr, int fmode, convconfig_t *convconfig)
 {
-    int pid = 0;
+    rb_pid_t pid = 0;
     rb_io_t *fptr;
     VALUE port;
     rb_io_t *write_fptr;
Index: version.h
===================================================================
--- version.h	(revision 23354)
+++ version.h	(revision 23355)
@@ -1,5 +1,5 @@
 #define RUBY_VERSION "1.9.2"
-#define RUBY_RELEASE_DATE "2009-05-06"
+#define RUBY_RELEASE_DATE "2009-05-07"
 #define RUBY_PATCHLEVEL -1
 #define RUBY_BRANCH_NAME "trunk"
 
@@ -8,7 +8,7 @@
 #define RUBY_VERSION_TEENY 1
 #define RUBY_RELEASE_YEAR 2009
 #define RUBY_RELEASE_MONTH 5
-#define RUBY_RELEASE_DAY 6
+#define RUBY_RELEASE_DAY 7
 
 #ifdef RUBY_EXTERN
 RUBY_EXTERN const char ruby_version[];

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

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