From d454837af56ecf5f7410f8dbdce5e8fcab224177 Mon Sep 17 00:00:00 2001 From: harrison Date: Mon, 12 May 1997 16:05:47 +0000 Subject: The old ACE_Process has been replaced with what used to be ACE_ProcessEx. The ACE_Process_Manager has changed to use the new ACE_Process API. --- ace/Process_Manager.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'ace/Process_Manager.h') diff --git a/ace/Process_Manager.h b/ace/Process_Manager.h index 651d236c097..4cb9554efd2 100644 --- a/ace/Process_Manager.h +++ b/ace/Process_Manager.h @@ -18,6 +18,7 @@ #define ACE_PROCESS_MANAGER_H #include "ace/Synch.h" +#include "ace/Process.h" class ACE_Export ACE_Process_Descriptor // = Title @@ -62,15 +63,13 @@ public: int close (void); // Release all resources. - pid_t start (char *argv[], char *envp[] = 0); - // Create a new process using . + pid_t start (ACE_Process_Options &options); + // Create a new process using ACE_Process::start (). // 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, - char *argv[], - char *envp[] = 0); + int start_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 -- cgit v1.2.1