summaryrefslogtreecommitdiff
path: root/ace/Process.cpp
diff options
context:
space:
mode:
authorcdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-01 17:57:41 +0000
committercdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-01 17:57:41 +0000
commit52d506a41bb7645c30ab37b3d77da33e186fa584 (patch)
treeb16229cb09483756ed9c560111b40ebceaa7fa69 /ace/Process.cpp
parent078a293b513620b912af488def022fe20c790f24 (diff)
downloadATCD-52d506a41bb7645c30ab37b3d77da33e186fa584.tar.gz
pSOS Diab and Trimedia compiler port checkin
Diffstat (limited to 'ace/Process.cpp')
-rw-r--r--ace/Process.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Process.cpp b/ace/Process.cpp
index 44dfbfac1a1..82b54091e8b 100644
--- a/ace/Process.cpp
+++ b/ace/Process.cpp
@@ -85,7 +85,7 @@ ACE_Process::spawn (ACE_Process_Options &options)
// If we must, set the working directory for the child process.
if (options.working_directory () != 0)
- ::chdir (options.working_directory ());
+ ACE_OS::chdir (options.working_directory ());
// Child process executes the command.
int result;
@@ -112,7 +112,7 @@ ACE_Process::spawn (ACE_Process_Options &options)
if (result == -1)
{
// If the execv fails, this child needs to exit.
-
+
// Exit with the errno so that the calling process can
// catch this and figure out what went wrong.
ACE_OS::exit (errno);