summaryrefslogtreecommitdiff
path: root/tests/Crashed_Callback/Crashed_Callback.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Crashed_Callback/Crashed_Callback.cpp')
-rw-r--r--tests/Crashed_Callback/Crashed_Callback.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/Crashed_Callback/Crashed_Callback.cpp b/tests/Crashed_Callback/Crashed_Callback.cpp
index 511d85e87d2..c23bfc16932 100644
--- a/tests/Crashed_Callback/Crashed_Callback.cpp
+++ b/tests/Crashed_Callback/Crashed_Callback.cpp
@@ -3,8 +3,6 @@
//
#include "Crashed_Callback.h"
-ACE_RCSID(Crashed_Callback, Crashed_Callback, "$Id$")
-
Crashed_Callback::Crashed_Callback (void)
{
}
@@ -20,10 +18,9 @@ Crashed_Callback::crash_now_please (void)
{
ACE_DEBUG ((LM_DEBUG,
"(%P|%t) Crashed_Callback - crashing application\n"));
-// Tru64 seems to hang and not abort and dump core when abort() is called
-// here. This needs further investigation. This fix is a temporary one.
-// Likewise for OpenVMS.
-#if defined (DIGITAL_UNIX) || defined (DEC_CXX) || defined (ACE_OPENVMS)
+// OpenVMS seems to hang and not abort and dump core when abort() is called
+// here. This needs further
+#if defined (DEC_CXX) || defined (ACE_OPENVMS)
ACE_OS::_exit();
#else
ACE_OS::abort();