summaryrefslogtreecommitdiff
path: root/ace/Process.h
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2002-10-05 00:25:54 +0000
committerSteve Huston <shuston@riverace.com>2002-10-05 00:25:54 +0000
commit0f9d1b93c445df745f37cb1f616cd9fd155a1b7c (patch)
tree7caccdf49e172841bf42289e545ee8ab18383951 /ace/Process.h
parent6327549fb88cee71553dc8a77222891d5f3600e3 (diff)
downloadATCD-0f9d1b93c445df745f37cb1f616cd9fd155a1b7c.tar.gz
ChangeLogTag:Fri Oct 4 20:22:41 2002 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'ace/Process.h')
-rw-r--r--ace/Process.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Process.h b/ace/Process.h
index e8a60cab8f8..d0c017cd1ff 100644
--- a/ace/Process.h
+++ b/ace/Process.h
@@ -305,7 +305,7 @@ protected:
#if !defined (ACE_HAS_WINCE)
/// Add <assignment> to environment_buf_ and adjust
/// environment_argv_. <len> is the strlen of <assignment>.
- int setenv_i (ACE_TCHAR *assignment, int len);
+ int setenv_i (ACE_TCHAR *assignment, size_t len);
/// Whether the child process inherits the current process
/// environment.
@@ -362,7 +362,7 @@ protected:
/// Pointer into environment_buf_. This should point to the next
/// free spot.
- int environment_buf_index_;
+ size_t environment_buf_index_;
/// Pointer to environment_argv_.
int environment_argv_index_;
@@ -371,7 +371,7 @@ protected:
ACE_TCHAR *environment_buf_;
/// Size of the environment buffer. Configurable
- int environment_buf_len_;
+ size_t environment_buf_len_;
/// Pointers into environment_buf_.
ACE_TCHAR **environment_argv_;