blob: 2a5ddf67a283d66f5905360589decaaaa9eb199c (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
//
// $Id$
//
#include "tao/RT_Current.h"
#if (TAO_HAS_RT_CORBA == 1)
#include "tao/Stub.h"
#include "tao/ORB_Core.h"
#include "tao/Priority_Mapping.h"
#include "ace/Thread.h"
#if !defined (__ACE_INLINE__)
#include "tao/RT_Current.i"
#endif /* __ACE_INLINE__ */
ACE_RCSID (TAO,
RT_Current,
"$Id$")
TAO_RT_Current::TAO_RT_Current (TAO_ORB_Core *orb_core)
: orb_core_ (orb_core)
{
}
TAO_RT_Current::~TAO_RT_Current (void)
{
}
RTCORBA::Priority
TAO_RT_Current::the_priority (CORBA::Environment &ACE_TRY_ENV)
ACE_THROW_SPEC ((CORBA::SystemException))
{
RTCORBA::Priority priority;
int result =
this->orb_core_->get_protocols_hooks ()->get_thread_priority (
this->orb_core_,
priority,
ACE_TRY_ENV);
ACE_CHECK_RETURN (-1);
if (result == -1)
ACE_THROW_RETURN (CORBA::DATA_CONVERSION (1, CORBA::COMPLETED_NO), -1);
return priority;
}
void
TAO_RT_Current::the_priority (RTCORBA::Priority the_priority,
CORBA::Environment &ACE_TRY_ENV)
ACE_THROW_SPEC ((CORBA::SystemException))
{
int result =
this->orb_core_->get_protocols_hooks ()->set_thread_priority (
this->orb_core_,
the_priority,
ACE_TRY_ENV);
ACE_CHECK;
if (result == -1)
ACE_THROW (CORBA::DATA_CONVERSION (1, CORBA::COMPLETED_NO));
}
#endif /* TAO_HAS_RT_CORBA == 1 */
|