summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-05 19:05:12 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-05 19:05:12 +0000
commitea88aad1297b4b9de5441fe666bb23636f754609 (patch)
treed791c40d022053e896972c2490820dcd2a224d80
parentafff77e09d4aed639a1572a531c34f4a211751b2 (diff)
downloadATCD-ea88aad1297b4b9de5441fe666bb23636f754609.tar.gz
*** empty log message ***
-rw-r--r--TAO/docs/reactivator.html38
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
};