From 34bb79c031e886cf6a3bf11060195918b93401e4 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 24 Apr 2008 15:16:38 +0000 Subject: [PATCH] * process.c: include sys/stat.h for umask. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16185 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ process.c | 3 ++- test/ruby/test_process.rb | 1 - 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 90295ebd0c..cbcdfa32b1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Apr 25 00:16:11 2008 Tanaka Akira + + * process.c: include sys/stat.h for umask. + Thu Apr 24 23:25:17 2008 Tanaka Akira * include/ruby/intern.h (rb_env_clear): declared. diff --git a/process.c b/process.c index 5a1a3fc5d1..69fecefba9 100644 --- a/process.c +++ b/process.c @@ -57,6 +57,8 @@ struct timeval rb_time_interval(VALUE); #undef HAVE_GETPGRP #endif +#include + #ifdef HAVE_SYS_TIMES_H #include #endif @@ -2733,7 +2735,6 @@ rb_f_system(int argc, VALUE *argv) * * Also, all non-standard unspecified descriptors can be closed by :close_others option. * The "standard" descriptors are 0, 1 and 2. - * (Current implementation closes decriptors less than some constant, such as 256.) * * # more similar to IO.popen * r, w = IO.pipe diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index 5213730a2b..4f0f2f00b5 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -1,6 +1,5 @@ require 'test/unit' require 'tmpdir' -require 'require_relative' require_relative 'envutil' class TestProcess < Test::Unit::TestCase