summaryrefslogtreecommitdiff
path: root/tests/SV_Shared_Memory_Test.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-02-28 20:13:32 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-02-28 20:13:32 +0000
commit0440219e8153953677a62bfecc3df271da2c0902 (patch)
tree2a3da2a69b30260cb8cbb027c38afe60a7262240 /tests/SV_Shared_Memory_Test.cpp
parentb9ef2bbd6da5db9e1764a3dab62aeb046d84c81b (diff)
downloadATCD-0440219e8153953677a62bfecc3df271da2c0902.tar.gz
foo
Diffstat (limited to 'tests/SV_Shared_Memory_Test.cpp')
-rw-r--r--tests/SV_Shared_Memory_Test.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/SV_Shared_Memory_Test.cpp b/tests/SV_Shared_Memory_Test.cpp
index 54ca146294f..b14e710a55f 100644
--- a/tests/SV_Shared_Memory_Test.cpp
+++ b/tests/SV_Shared_Memory_Test.cpp
@@ -102,14 +102,12 @@ main (int, char *[])
#if defined (ACE_HAS_SYSV_IPC)
char *shm = (char *) allocator.malloc (27);
- switch (ACE_OS::fork ())
+ switch (ACE_OS::fork ("SV_Shared_Memory_Test.cpp"))
{
case -1:
ACE_ERROR_RETURN ((LM_ERROR, "(%P) fork failed\n"), -1);
/* NOTREACHED */
case 0:
- // Child.
- ACE_LOG_MSG->sync ("SV_Shared_Memory_Test.cpp");
child (shm);
break;
default: