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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/**
* @file Client_Peer.cpp
*
* @author Carlos O'Ryan <coryan@atdesk.com>
*/
#include "Client_Peer.h"
#include "Clock_Ticks.h"
#include "tao/ORB_Core.h"
#include "ace/Reactor.h"
class Crasher : public ACE_Event_Handler
{
public:
Crasher ();
virtual int handle_timeout (ACE_Time_Value const & current_time,
void const * arg);
};
Client_Peer::Client_Peer (CORBA::ORB_ptr orb)
: orb_(CORBA::ORB::_duplicate(orb))
{
}
void
Client_Peer::callme(Test::Peer_ptr callback,
CORBA::ULong max_depth,
Test::Payload const &)
{
// ACE_DEBUG ((LM_DEBUG, "Received call, depth = %d\n", max_depth));
if (max_depth > 0)
{
Test::Peer_var me = this->_this ();
Test::Payload return_data;
callback->callme(me.in(), max_depth - 1, return_data);
}
}
void
Client_Peer::crash()
{
Crasher * crasher = new Crasher;
ACE_Time_Value clk_tck (0, Clock_Ticks::get_usecs_per_tick ());
ACE_Reactor * reactor = this->orb_->orb_core()->reactor();
reactor->schedule_timer(crasher, 0, clk_tck);
}
void
Client_Peer::noop()
{
}
Crasher::Crasher()
{
}
int
Crasher::handle_timeout (ACE_Time_Value const & ,
void const *)
{
// ACE_DEBUG ((LM_DEBUG, "(%P|%t) Performing intentional crash
// %a\n"));
// This tests hangs on OpenVMS when abort() is used.
// Also see Crashed_Callback test.
#if defined (ACE_OPENVMS)
ACE_OS::_exit ();
#else
ACE_OS::abort();
#endif
return 0;
}
|