summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-25 02:35:29 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-25 02:35:29 +0000
commit0e8395d6cb5eb27f0a630be88839e6a11a2ea7c9 (patch)
treeeaf6563cfe112d3528fa5fb2532d429310698ff3 /internal.h
parent7563b69cea7b731c8bfad2c5a3bd1b2d7c126f4c (diff)
* internal.h: use rb_pid_t instead of pid_t because of there is no
definition of pid_t here on Windows. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36212 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal.h b/internal.h
index 790cf5b31d..a8974443d4 100644
--- a/internal.h
+++ b/internal.h
@@ -184,7 +184,7 @@ struct rb_execarg {
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;