summaryrefslogtreecommitdiff
path: root/ACE/ace/Process.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-10-02 17:29:05 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-10-02 17:29:05 +0000
commite91577bca0483d85ef023a041fc95c9362c7a638 (patch)
tree64596e89fe88b295568485b641ece20ff2ef9594 /ACE/ace/Process.cpp
parent6249290fa983e204625fbd5b52a7a3c68ff8976c (diff)
downloadATCD-e91577bca0483d85ef023a041fc95c9362c7a638.tar.gz
Tue Oct 2 17:06:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Process.cpp')
-rw-r--r--ACE/ace/Process.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/ACE/ace/Process.cpp b/ACE/ace/Process.cpp
index 276030bec96..d7ccb6c1d4b 100644
--- a/ACE/ace/Process.cpp
+++ b/ACE/ace/Process.cpp
@@ -690,13 +690,13 @@ ACE_Process::close_passed_handles (void)
return;
}
-ACE_Process_Options::ACE_Process_Options (int ie,
- int cobl,
- int ebl,
- int mea)
+ACE_Process_Options::ACE_Process_Options (bool inherit_environment,
+ int command_line_buf_len,
+ int env_buf_len,
+ int max_env_args)
:
#if !defined (ACE_HAS_WINCE)
- inherit_environment_ (ie),
+ inherit_environment_ (inherit_environment),
#endif /* ACE_HAS_WINCE */
creation_flags_ (0),
avoid_zombies_ (0),
@@ -719,26 +719,26 @@ ACE_Process_Options::ACE_Process_Options (int ie,
environment_buf_index_ (0),
environment_argv_index_ (0),
environment_buf_ (0),
- environment_buf_len_ (ebl),
- max_environment_args_ (mea),
- max_environ_argv_index_ (mea - 1),
+ environment_buf_len_ (env_buf_len),
+ max_environment_args_ (max_env_args),
+ max_environ_argv_index_ (max_env_args - 1),
#endif /* !ACE_HAS_WINCE */
command_line_argv_calculated_ (0),
command_line_buf_ (0),
command_line_copy_ (0),
- command_line_buf_len_ (cobl),
+ command_line_buf_len_ (command_line_buf_len),
process_group_ (ACE_INVALID_PID)
{
ACE_NEW (command_line_buf_,
- ACE_TCHAR[cobl]);
+ ACE_TCHAR[command_line_buf_len]);
command_line_buf_[0] = '\0';
#if !defined (ACE_HAS_WINCE)
working_directory_[0] = '\0';
ACE_NEW (environment_buf_,
- ACE_TCHAR[ebl]);
+ ACE_TCHAR[env_buf_len]);
ACE_NEW (environment_argv_,
- ACE_TCHAR *[mea]);
+ ACE_TCHAR *[max_env_args]);
environment_buf_[0] = '\0';
environment_argv_[0] = 0;
process_name_[0] = '\0';