summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-23 08:18:34 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-23 08:18:34 +0000
commit26ecb6cbc4d6ebd3fcb7d8a1f829e2910ad26bdc (patch)
tree3f30a5b6be5d47761fa2b3b7a079b3412ada37e9 /internal.h
parentf732c5046ed89b0ed669e97f36f5fa05b9a33b73 (diff)
* internal.h (rb_execarg): add env_modification field.
* process.c (EXEC_OPTION_ENV): removed. (mark_exec_arg): mark env_modification field. (rb_exec_fillarg): update the new field, instead of options array. (rb_execarg_fixup): use the new field. (save_env): ditto. (rb_execarg_run_options): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36197 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal.h b/internal.h
index 662d8bf474..ea0846c8f1 100644
--- a/internal.h
+++ b/internal.h
@@ -187,6 +187,7 @@ struct rb_execarg {
VALUE rlimit_limits; /* Qfalse or [[rtype, softlim, hardlim], ...] */
mode_t umask_mask;
int close_others_maxhint;
+ VALUE env_modification; /* Qfalse or [[k1,v1], ...] */
VALUE chdir_dir;
};