summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2003-04-10 05:48:18 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2003-04-10 05:48:18 +0000
commit5a79a92042a80b09471b9acfa0919799b2d5f52d (patch)
tree9baeb9f549ce31630fae57b9d36687bfdd1bfd8c
parent83bce6fd1d265cbdbbf4283bc733d773aade562d (diff)
downloadATCD-5a79a92042a80b09471b9acfa0919799b2d5f52d.tar.gz
ChangeLogTag: Thu Apr 10 07:46:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ChangeLog5
-rw-r--r--examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.cpp3
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 74dff8babb1..05614cafcda 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Apr 10 07:47:12 2003 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.cpp:
+ Fixed compile error with GNU.
+
Wed Apr 9 14:10:42 2003 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/MakeWorkspaceCreator.pm:
diff --git a/examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.cpp b/examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.cpp
index 0a7d718009d..39157552b93 100644
--- a/examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.cpp
+++ b/examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.cpp
@@ -1,6 +1,7 @@
// $Id$
#include "ace/SV_Shared_Memory.h"
+#include "ace/Log_Msg.h"
#include "SV_Shared_Memory_Test.h"
ACE_RCSID(SV_Shared_Memory, SV_Shared_Memory_Test, "$Id$")
@@ -70,5 +71,5 @@ int main (int, char *[])
"SYSV IPC, or SYSV SHMEM is not supported on this platform\n"));
return 0;
}
-#endif /* ACE_HAS_SYSV_IPC && !ACE_LACKS_SYSV_SHMEM/
+#endif /* ACE_HAS_SYSV_IPC && !ACE_LACKS_SYSV_SHMEM */