diff options
author | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-20 21:40:15 +0000 |
---|---|---|
committer | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-20 21:40:15 +0000 |
commit | dcf6bb9e58ba7a98dc54484e2dfe51961f7d8db4 (patch) | |
tree | edfc05d76d4076569bd0f375b0ed620af9e42e5b | |
parent | e3a56042faae7ba017a53b66200942c98712d6eb (diff) | |
download | ATCD-dcf6bb9e58ba7a98dc54484e2dfe51961f7d8db4.tar.gz |
Changed ACE_LACKS_EXEC to ACE_LACKS_FORK.
-rw-r--r-- | tests/IOStream_Test.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/IOStream_Test.cpp b/tests/IOStream_Test.cpp index a0c182409ef..5db27322124 100644 --- a/tests/IOStream_Test.cpp +++ b/tests/IOStream_Test.cpp @@ -396,7 +396,7 @@ spawn (void) // Wait for the client and server thread to exit. ACE_Thread_Manager::instance ()->wait (); -#elif !defined (ACE_LACKS_EXEC) +#elif !defined (ACE_LACKS_FORK) switch (ACE_OS::fork ("child")) { @@ -405,14 +405,14 @@ spawn (void) ACE_OS::_exit (-1); case 0: // In child { - ACE_APPEND_LOG ("Process_Mutex_Test-children"); + ACE_APPEND_LOG ("Process_Mutex_Test-children"); ACE_INET_Addr server_addr; if (acceptor.get_local_addr (server_addr) == -1) ACE_ERROR ((LM_ERROR, "%p\n", "get_local_addr")); else client ((void *) &server_addr); - ACE_END_LOG; + ACE_END_LOG; break; } default: // In parent |