From 06ce59d348e30ce3da6106943c2d5660abc4c219 Mon Sep 17 00:00:00 2001 From: nobody Date: Sun, 23 May 1999 18:28:55 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'IR-base'. --- ace/Process.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'ace/Process.cpp') diff --git a/ace/Process.cpp b/ace/Process.cpp index 2f4abe189f7..3a7606d4cc4 100644 --- a/ace/Process.cpp +++ b/ace/Process.cpp @@ -92,8 +92,7 @@ ACE_Process::spawn (ACE_Process_Options &options) return this->child_id_; #else /* ACE_WIN32 */ // Fork the new process. - this->child_id_ = ACE::fork (options.command_line_argv ()[0], - options.avoid_zombies ()); + this->child_id_ = ACE_OS::fork (options.command_line_argv ()[0]); // If we're not supposed to exec, return the process id. if (ACE_BIT_ENABLED (options.creation_flags (), ACE_Process_Options::NO_EXEC)) @@ -226,7 +225,6 @@ ACE_Process_Options::ACE_Process_Options (int ie, stdin_ (ACE_INVALID_HANDLE), stdout_ (ACE_INVALID_HANDLE), stderr_ (ACE_INVALID_HANDLE), - avoid_zombies_ (0), #endif /* ACE_WIN32 */ set_handles_called_ (0), environment_buf_index_ (0), -- cgit v1.2.1