blob: 637a783140a4abdb00e7aef7ef3385cbea0cfd9b (
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
32
33
34
35
36
37
38
39
40
41
42
43
|
#include "tao/XtResource/XtResource_Factory.h"
#include "tao/debug.h"
#include "ace/XtReactor/XtReactor.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
XtResource_Factory::XtResource_Factory (XtAppContext p_context):
reactor_impl_( 0 ),
context_( p_context )
{
}
ACE_Reactor_Impl *
XtResource_Factory::reactor_impl (void)
{
// synchronized by external locks
if (this->context_ == 0)
{
TAOLIB_ERROR ((LM_ERROR,
ACE_TEXT("TAO (%P|%t) - XtAppContext is undefined.")
ACE_TEXT(" Cannot create ACE_XtReactor\n")));
return 0;
}
if (!this->reactor_impl_)
{
ACE_NEW_RETURN (this->reactor_impl_,
ACE_XtReactor (this->context_),
0);
if (TAO_debug_level > 0)
TAOLIB_DEBUG ((LM_DEBUG,
"TAO (%P|%t) - ACE_XtReactor created\n"));
}
return this->reactor_impl_;
}
}
TAO_END_VERSIONED_NAMESPACE_DECL
|