summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authornw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-08-13 15:56:44 +0000
committernw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-08-13 15:56:44 +0000
commit73d5fa474fd83fddcab47aa216db5e8321bfbb94 (patch)
treed2f604b20f6011d97d1455eb4a14003fc4891a55 /ace
parentda2e64841a2ba7f71115a0cde6639ec932b6a6ac (diff)
downloadATCD-73d5fa474fd83fddcab47aa216db5e8321bfbb94.tar.gz
*** empty log message ***
Diffstat (limited to 'ace')
-rw-r--r--ace/README1
-rw-r--r--ace/Synch.cpp4
2 files changed, 2 insertions, 3 deletions
diff --git a/ace/README b/ace/README
index cc981dcdd05..0fecb1c53ca 100644
--- a/ace/README
+++ b/ace/README
@@ -29,7 +29,6 @@ ACE_HAS_WRITEV_TIMEDWAIT
ACE_HAS_4_4BSD_SENDMSG_RECVMSG Platform has BSD 4.4 sendmsg()/recvmsg() APIs.
ACE_HAS_P_READ_WRITE Platform has pread() and pwrite() support
ACE_HAS_64BIT_LONGS Platform has 64bit longs and 32bit ints...
-ACE_HAS_BROKEN_ATEXIT Platform doesn't handle atexit call properly. (DEC CXX, HP/UX, and AIX.)
ACE_HAS_AIX_BROKEN_SOCKET_HEADER Platform, such as AIX4, needs to wrap #include of sys/socket.h with #undef/#define of __cplusplus.
ACE_HAS_AIX_HI_RES_TIMER Platform has AIX4 ::read_real_time ()
ACE_HAS_ALLOCA Compiler/platform supports alloca()
diff --git a/ace/Synch.cpp b/ace/Synch.cpp
index 8bab7ea5eba..0d78c6b6a80 100644
--- a/ace/Synch.cpp
+++ b/ace/Synch.cpp
@@ -935,7 +935,7 @@ ACE_Static_Object_Lock::instance (void)
{
ACE_NEW_RETURN (ACE_Static_Object_Lock::mutex_,
ACE_Recursive_Thread_Mutex, 0);
-#if ! defined (ACE_HAS_BROKEN_ATEXIT)
+#if 0
// On DEC CXX, HP/UX, and AIX. It should be done through the
// Object_Manager, but then all "statics" will have to play that
// game as well.
@@ -944,7 +944,7 @@ ACE_Static_Object_Lock::instance (void)
#else
::atexit (ACE_Static_Object_Lock::atexit);
#endif /* ACE_HAS_SIG_C_FUNC */
-#endif /* ACE_HAS_BROKEN_ATEXIT */
+#endif /* 0 */
}
return ACE_Static_Object_Lock::mutex_;
}