summaryrefslogtreecommitdiff
path: root/ACE/ace/Notification_Queue.inl
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-03-04 13:56:48 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-03-04 13:56:48 +0000
commitc4078c377d74290ebe4e66da0b4975da91732376 (patch)
tree1816ef391e42a07929304908ac0e21f4c2f6cb7b /ACE/ace/Notification_Queue.inl
parent700d1c1a6be348c6c70a2085e559baeb8f4a62ea (diff)
downloadATCD-c4078c377d74290ebe4e66da0b4975da91732376.tar.gz
swap in externals for ACE and TAO
Diffstat (limited to 'ACE/ace/Notification_Queue.inl')
-rw-r--r--ACE/ace/Notification_Queue.inl47
1 files changed, 0 insertions, 47 deletions
diff --git a/ACE/ace/Notification_Queue.inl b/ACE/ace/Notification_Queue.inl
deleted file mode 100644
index b7ef09a820f..00000000000
--- a/ACE/ace/Notification_Queue.inl
+++ /dev/null
@@ -1,47 +0,0 @@
-// $Id$
-
-ACE_INLINE ACE_Notification_Queue_Node::
-ACE_Notification_Queue_Node()
- : ACE_Intrusive_List_Node<ACE_Notification_Queue_Node>()
- , contents_(0, 0)
-{
-}
-
-ACE_INLINE void
-ACE_Notification_Queue_Node::
-set(ACE_Notification_Buffer const & rhs)
-{
- contents_ = rhs;
-}
-
-ACE_INLINE ACE_Notification_Buffer const &
-ACE_Notification_Queue_Node::
-get() const
-{
- return contents_;
-}
-
-ACE_INLINE bool
-ACE_Notification_Queue_Node::
-matches_for_purging(ACE_Event_Handler * eh) const
-{
- return (0 != get().eh_) && (0 == eh || eh == get().eh_);
-}
-
-ACE_INLINE bool
-ACE_Notification_Queue_Node::
-mask_disables_all_notifications(ACE_Reactor_Mask mask)
-{
- // the existing notification mask is left with nothing when applying
- // the mask
- return ACE_BIT_DISABLED (get().mask_, ~mask);
-}
-
-ACE_INLINE void
-ACE_Notification_Queue_Node::
-clear_mask(ACE_Reactor_Mask mask)
-{
- ACE_CLR_BITS(contents_.mask_, mask);
-}
-
-