diff options
author | harrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-16 04:34:05 +0000 |
---|---|---|
committer | harrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-16 04:34:05 +0000 |
commit | 68edeec48607a6824156db80a6fe8d1ec4e976de (patch) | |
tree | e4ba96f391dd6935cb8f39b21d6dcc631001eb10 /ace/Process_Manager.h | |
parent | 8e0becc354c8f94e7abfb180770eb84ed341645e (diff) | |
download | ATCD-68edeec48607a6824156db80a6fe8d1ec4e976de.tar.gz |
Yippeee spawn_n lives.
Diffstat (limited to 'ace/Process_Manager.h')
-rw-r--r-- | ace/Process_Manager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Process_Manager.h b/ace/Process_Manager.h index 4cb9554efd2..ce58be467fd 100644 --- a/ace/Process_Manager.h +++ b/ace/Process_Manager.h @@ -63,13 +63,13 @@ public: int close (void); // Release all resources. - pid_t start (ACE_Process_Options &options); + pid_t spawn (ACE_Process_Options &options); // Create a new process using ACE_Process::start (<options>). // Returns: on success a unique group id that can be used to control // other processs added to the same group. On failure, returns -1. - int start_n (size_t n, ACE_Process_Options &options); + int spawn_n (size_t n, ACE_Process_Options &options); // Create N new processs. // Returns: on success a unique group id that can be used to control |