mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
7563b69cea
commit
0e8395d6cb
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Jun 25 11:34:45 2012 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* 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@gmail.com>
|
||||
|
||||
* configure.in (for stack end address): remove human68k specific
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue