summaryrefslogtreecommitdiff
path: root/TAO/tests/Crashed_Callback/Crashed_Callback.cpp
blob: cb57d3ddcafaf5ca0b82a57cf5a02cedde6aa303 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "Crashed_Callback.h"

Crashed_Callback::Crashed_Callback ()
{
}

CORBA::Boolean
Crashed_Callback::are_you_there ()
{
  return 1;
}

void
Crashed_Callback::crash_now_please ()
{
  ACE_DEBUG ((LM_DEBUG,
              "(%P|%t) Crashed_Callback - crashing application\n"));
// OpenVMS seems to hang and not abort and dump core when abort() is called
// here. This needs further
#if defined (ACE_OPENVMS)
  ACE_OS::_exit();
#else
  ACE_OS::abort();
#endif

}

void
Crashed_Callback::test_oneway ()
{
}