mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* process.c (run_exec_rlimit): ISO C90 forbids mixed declarations
and code git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3e69e83a62
commit
ddc5f561e7
2 changed files with 9 additions and 5 deletions
|
@ -1,4 +1,7 @@
|
|||
Tue Jul 1 17:14:59 2008 URABE Shyouhei <shyouhei@ruby-lang.org>
|
||||
Tue Jul 1 17:30:30 2008 URABE Shyouhei <shyouhei@ruby-lang.org>
|
||||
|
||||
* process.c (run_exec_rlimit): ISO C90 forbids mixed declarations
|
||||
and code
|
||||
|
||||
* include/ruby/ruby.h (enum ruby_special_consts): ISO C forbids
|
||||
comma at end of enumerator list
|
||||
|
|
|
@ -2052,12 +2052,13 @@ run_exec_rlimit(VALUE ary, VALUE save)
|
|||
int rtype = NUM2INT(RARRAY_PTR(elt)[0]);
|
||||
struct rlimit rlim;
|
||||
if (!NIL_P(save)) {
|
||||
VALUE tmp, newary;
|
||||
if (getrlimit(rtype, &rlim) == -1)
|
||||
return -1;
|
||||
VALUE tmp = hide_obj(rb_ary_new3(3, RARRAY_PTR(elt)[0],
|
||||
RLIM2NUM(rlim.rlim_cur),
|
||||
RLIM2NUM(rlim.rlim_max)));
|
||||
VALUE newary = rb_ary_entry(save, EXEC_OPTION_RLIMIT);
|
||||
tmp = hide_obj(rb_ary_new3(3, RARRAY_PTR(elt)[0],
|
||||
RLIM2NUM(rlim.rlim_cur),
|
||||
RLIM2NUM(rlim.rlim_max)));
|
||||
newary = rb_ary_entry(save, EXEC_OPTION_RLIMIT);
|
||||
if (NIL_P(newary)) {
|
||||
newary = hide_obj(rb_ary_new());
|
||||
rb_ary_store(save, EXEC_OPTION_RLIMIT, newary);
|
||||
|
|
Loading…
Reference in a new issue