repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git]
/
TAO
/
tao
/
CSD_ThreadPool
/
CSD_TP_Queue.inl
blob
de9e490a47a134efb2b75519bc9c13d69e0b429f
1
// -*- C++ -*-
2
3
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
4
5
ACE_INLINE
6
TAO::CSD::TP_Queue::TP_Queue()
7
: head_(0),
8
tail_(0)
9
{
10
}
11
12
13
ACE_INLINE
14
TAO::CSD::TP_Queue::~TP_Queue()
15
{
16
}
17
18
19
ACE_INLINE
20
bool
21
TAO::CSD::TP_Queue::is_empty() const
22
{
23
return (this->head_ == 0);
24
}
25
26
TAO_END_VERSIONED_NAMESPACE_DECL