diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-01-17 03:08:32 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-01-17 03:08:32 +0000 |
commit | 2793714fe0c012276471e1be5f322bc60a884db1 (patch) | |
tree | 26944b622d714a0247930649d41525afcf41ab0a /ace/Process.h | |
parent | fc95947d076de3b8f6056e8d16cb4badc0965500 (diff) | |
download | ATCD-2793714fe0c012276471e1be5f322bc60a884db1.tar.gz |
.
Diffstat (limited to 'ace/Process.h')
-rw-r--r-- | ace/Process.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/ace/Process.h b/ace/Process.h index 7d1eac37667..5281897e218 100644 --- a/ace/Process.h +++ b/ace/Process.h @@ -55,12 +55,16 @@ public: #endif /* ACE_WIN32 */ }; -// Default settings not part of public Iface protected: - enum { + // = Default settings not part of public Interface. + // + // @@ These sizes should be taken from the appropriate + // POSIX/system header files and/or defined dynamically. + enum + { MAX_COMMAND_LINE_OPTIONS = 128, - ENVIRONMENT_BUFFER = 8192, - MAX_ENVIRONMENT_ARGS = 128 + ENVIRONMENT_BUFFER = 16 * 1024, // 16K + MAX_ENVIRONMENT_ARGS = 512 // }; public: |