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

ruby-changes:24161

From: usa <ko1@a...>
Date: Mon, 25 Jun 2012 11:35:41 +0900 (JST)
Subject: [ruby-changes:24161] usa:r36212 (trunk): * internal.h: use rb_pid_t instead of pid_t because of there is no

usa	2012-06-25 11:35:29 +0900 (Mon, 25 Jun 2012)

  New Revision: 36212

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

  Log:
    * internal.h: use rb_pid_t instead of pid_t because of there is no
      definition of pid_t here on Windows.

  Modified files:
    trunk/ChangeLog
    trunk/internal.h

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 36211)
+++ ChangeLog	(revision 36212)
@@ -1,3 +1,8 @@
+Mon Jun 25 11:34:45 2012  NAKAMURA Usaku  <usa@r...>
+
+	* internal.h: use rb_pid_t instead of pid_t because of there is no
+	  definition of pid_t here on Windows.
+
 Mon Jun 25 00:25:01 2012  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
 	* configure.in (for stack end address): remove human68k specific
Index: internal.h
===================================================================
--- internal.h	(revision 36211)
+++ internal.h	(revision 36212)
@@ -184,7 +184,7 @@
     unsigned chdir_given : 1;
     unsigned new_pgroup_given : 1;
     unsigned new_pgroup_flag : 1;
-    pid_t pgroup_pgid; /* asis(-1), new pgroup(0), specified pgroup (0<V). */
+    rb_pid_t pgroup_pgid; /* asis(-1), new pgroup(0), specified pgroup (0<V). */
     VALUE rlimit_limits; /* Qfalse or [[rtype, softlim, hardlim], ...] */
     mode_t umask_mask;
     VALUE fd_dup2;

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

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