GitHub Actions: Try MSVC builds with /std:c++17 and 20
[ACE_TAO.git] / ACE / ace / Notification_Queue.inl
blob5d615dffb31f22d9e29b32a654bc2fbea4d5e68b
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>()
6   , contents_(0, 0)
10 ACE_INLINE void
11 ACE_Notification_Queue_Node::set(ACE_Notification_Buffer const & rhs)
13   contents_ = rhs;
16 ACE_INLINE ACE_Notification_Buffer const &
17 ACE_Notification_Queue_Node::get() const
19   return contents_;
22 ACE_INLINE bool
23 ACE_Notification_Queue_Node::matches_for_purging(ACE_Event_Handler * eh) const
25   return (0 != get().eh_) && (0 == eh || eh == get().eh_);
28 ACE_INLINE bool
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
33   // the mask
34   return ACE_BIT_DISABLED (get().mask_, ~mask);
37 ACE_INLINE void
38 ACE_Notification_Queue_Node::clear_mask(ACE_Reactor_Mask mask)
40   ACE_CLR_BITS(contents_.mask_, mask);
43 ACE_END_VERSIONED_NAMESPACE_DECL