diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-05 19:05:12 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-05 19:05:12 +0000 |
commit | ea88aad1297b4b9de5441fe666bb23636f754609 (patch) | |
tree | d791c40d022053e896972c2490820dcd2a224d80 | |
parent | afff77e09d4aed639a1572a531c34f4a211751b2 (diff) | |
download | ATCD-ea88aad1297b4b9de5441fe666bb23636f754609.tar.gz |
*** empty log message ***
-rw-r--r-- | TAO/docs/reactivator.html | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/TAO/docs/reactivator.html b/TAO/docs/reactivator.html index 7aa65babb71..bb0965af543 100644 --- a/TAO/docs/reactivator.html +++ b/TAO/docs/reactivator.html @@ -104,30 +104,32 @@ module TAO exception Not_Found {}; // Object not found in the Reactivator - interface Process_Options - { - struct Environment_Variable - { - string name_; - string value_; - }; - // One environment variable + struct Environment_Variable + { + string name_; + string value_; + }; + // One environment variable - typedef sequence<Environment_Variable> Environment; - attribute Environment environment_; - // Complete environment - - typedef sequence<string> Command_Line_Options; - attribute Command_Line_Options command_line_options_; - // Command line options + typedef sequence<Environment_Variable> Environment; - attribute string executable_name_; + typedef sequence<string> Command_Line_Options; + + struct Process_Options + { + string executable_name_; // Executable name - attribute string working_directory_; + Command_Line_Options command_line_options_; + // Command line options + + Environment environment_; + // Complete environment + + string working_directory_; // Working directory - attribute unsigned long creation_flags_; + unsigned long creation_flags_; // Creation flags }; |