summaryrefslogtreecommitdiff
path: root/TAO/tests/Crashed_Callback
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-09-08 13:25:56 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-09-08 13:25:56 +0000
commit6da6a5a3ddf69472767335eb14a6dd72003d2544 (patch)
treeb9d9c42760b2fd44f66be3d911ddfbcce06eb3fc /TAO/tests/Crashed_Callback
parent8f97e7ac397b255bb059a5353ab210762b608c27 (diff)
downloadATCD-6da6a5a3ddf69472767335eb14a6dd72003d2544.tar.gz
Wed Sep 8 13:14:03 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* *.cpp: Removed RCS_ID
Diffstat (limited to 'TAO/tests/Crashed_Callback')
-rw-r--r--TAO/tests/Crashed_Callback/Crashed_Callback.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/TAO/tests/Crashed_Callback/Crashed_Callback.cpp b/TAO/tests/Crashed_Callback/Crashed_Callback.cpp
index 511d85e87d2..c23bfc16932 100644
--- a/TAO/tests/Crashed_Callback/Crashed_Callback.cpp
+++ b/TAO/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();