summaryrefslogtreecommitdiff
path: root/TAO/tao/RTCORBA/Thread_Pool.inl
blob: 4dd082367645b8bfd57ee8024d25fe52e6a18de1 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
// -*- C++ -*-
//
// $Id$

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

ACE_INLINE
TAO_Thread_Lane &
TAO_Thread_Pool_Threads::lane (void) const
{
  return this->lane_;
}

ACE_INLINE
CORBA::ULong
TAO_Thread_Lane::id (void) const
{
  return this->id_;
}

ACE_INLINE
TAO_Thread_Pool &
TAO_Thread_Lane::pool (void) const
{
  return this->pool_;
}

ACE_INLINE
CORBA::Short
TAO_Thread_Lane::lane_priority (void) const
{
  return this->lane_priority_;
}

ACE_INLINE
CORBA::Short
TAO_Thread_Lane::native_priority (void) const
{
  return this->native_priority_;
}

ACE_INLINE
CORBA::ULong
TAO_Thread_Lane::static_threads (void) const
{
  return this->static_threads_number_;
}

ACE_INLINE
CORBA::ULong
TAO_Thread_Lane::dynamic_threads (void) const
{
  return this->dynamic_threads_number_;
}

ACE_INLINE
TAO_Thread_Lane_Resources &
TAO_Thread_Lane::resources (void)
{
  return this->resources_;
}

ACE_INLINE
ACE_Time_Value const &
TAO_Thread_Lane::dynamic_thread_idle_timeout (void) const
{
  return this->dynamic_thread_idle_timeout_;
}

ACE_INLINE
bool
TAO_Thread_Pool::with_lanes (void) const
{
  return this->with_lanes_;
}

ACE_INLINE
TAO_Thread_Pool_Manager &
TAO_Thread_Pool::manager (void) const
{
  return this->manager_;
}

ACE_INLINE
CORBA::ULong
TAO_Thread_Pool::id (void) const
{
  return this->id_;
}

ACE_INLINE
CORBA::ULong
TAO_Thread_Pool::stack_size (void) const
{
  return this->stack_size_;
}

ACE_INLINE
CORBA::Boolean
TAO_Thread_Pool::allow_borrowing (void) const
{
  return this->allow_borrowing_;
}

ACE_INLINE
CORBA::Boolean
TAO_Thread_Pool::allow_request_buffering (void) const
{
  return this->allow_request_buffering_;
}

ACE_INLINE
CORBA::ULong
TAO_Thread_Pool::max_buffered_requests (void) const
{
  return this->max_buffered_requests_;
}

ACE_INLINE
CORBA::ULong
TAO_Thread_Pool::max_request_buffer_size (void) const
{
  return this->max_request_buffer_size_;
}

ACE_INLINE
TAO_Thread_Lane **
TAO_Thread_Pool::lanes (void)
{
  return this->lanes_;
}

ACE_INLINE
CORBA::ULong
TAO_Thread_Pool::number_of_lanes (void) const
{
  return this->number_of_lanes_;
}

TAO_END_VERSIONED_NAMESPACE_DECL