diff options
author | harrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-12 22:09:37 +0000 |
---|---|---|
committer | harrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-12 22:09:37 +0000 |
commit | d5e876f87c35029bb4c8def4cd610fab51d28532 (patch) | |
tree | 807257a5d42e1c6b3a6c9cde26767908e80b2101 /tests/Tokens_Test.cpp | |
parent | a5f0aa21ff9a113dc06f3ecc25c287eec67623b7 (diff) | |
download | ATCD-d5e876f87c35029bb4c8def4cd610fab51d28532.tar.gz |
These work with the new ACE_Process::spawn.
This change may have clobbered other changes that happened during the
same time. My repository got messed up and I had to clobber and update.
Diffstat (limited to 'tests/Tokens_Test.cpp')
-rw-r--r-- | tests/Tokens_Test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Tokens_Test.cpp b/tests/Tokens_Test.cpp index 93431382f23..6bf5064555d 100644 --- a/tests/Tokens_Test.cpp +++ b/tests/Tokens_Test.cpp @@ -200,7 +200,7 @@ main (int, char *[]) // Start up the token server. ACE_Process new_process; - if (new_process.start (options) == -1) + if (new_process.spawn (options) == -1) ACE_ERROR_RETURN ((LM_DEBUG, "%p fork failed.\n", "Tokens_Tests.cpp"), 0); else ACE_DEBUG ((LM_DEBUG, "Server forked with pid = %d.\n", new_process.getpid ())); |