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

ruby-changes:5121

From: akr <ko1@a...>
Date: Tue, 27 May 2008 00:52:35 +0900 (JST)
Subject: [ruby-changes:5121] Ruby:r16616 (ruby_1_8): * process.c (proc_getpgrp): rdoc enabled.

akr	2008-05-27 00:52:22 +0900 (Tue, 27 May 2008)

  New Revision: 16616

  Modified files:
    branches/ruby_1_8/process.c

  Log:
    * process.c (proc_getpgrp): rdoc enabled.


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8/process.c?r1=16616&r2=16615&diff_format=u

Index: ruby_1_8/process.c
===================================================================
--- ruby_1_8/process.c	(revision 16615)
+++ ruby_1_8/process.c	(revision 16616)
@@ -1632,6 +1632,10 @@
 }
 
 
+#if defined(SIGCLD) && !defined(SIGCHLD)
+# define SIGCHLD SIGCLD
+#endif
+
 /*
  *  call-seq:
  *     Process.getpgrp   => integer
@@ -1643,10 +1647,6 @@
  *     Process.getpgrp      #=> 25527
  */
 
-#if defined(SIGCLD) && !defined(SIGCHLD)
-# define SIGCHLD SIGCLD
-#endif
-
 static VALUE
 proc_getpgrp()
 {

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

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