1 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
3 ACE_INLINE ACE_Notification_Queue_Node::
4 ACE_Notification_Queue_Node()
5 : ACE_Intrusive_List_Node<ACE_Notification_Queue_Node>()
11 ACE_Notification_Queue_Node::set(ACE_Notification_Buffer const & rhs)
16 ACE_INLINE ACE_Notification_Buffer const &
17 ACE_Notification_Queue_Node::get() const
23 ACE_Notification_Queue_Node::matches_for_purging(ACE_Event_Handler * eh) const
25 return (0 != get().eh_) && (0 == eh || eh == get().eh_);
29 ACE_Notification_Queue_Node::mask_disables_all_notifications(
30 ACE_Reactor_Mask mask)
32 // the existing notification mask is left with nothing when applying
34 return ACE_BIT_DISABLED (get().mask_, ~mask);
38 ACE_Notification_Queue_Node::clear_mask(ACE_Reactor_Mask mask)
40 ACE_CLR_BITS(contents_.mask_, mask);
43 ACE_END_VERSIONED_NAMESPACE_DECL