/* -*- C++ -*- */ //============================================================================= /** * @file Select_Reactor.h * * $Id$ * * @author Douglas C. Schmidt */ //============================================================================= #ifndef ACE_SELECT_REACTOR_H #define ACE_SELECT_REACTOR_H #include "ace/pre.h" #include "ace/Select_Reactor_T.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ typedef ACE_Select_Reactor_Token_T ACE_Select_Reactor_Token; typedef ACE_Select_Reactor_T ACE_Select_Reactor; ACE_TEMPLATE_SPECIALIZATION /** * @class ACE_Guard< ACE_Select_Reactor_Token_T > * * @brief Template specialization of for the * . * * This specialization is useful since it helps to speedup * performance of the "Null_Mutex" considerably. */ class ACE_Export ACE_Guard< ACE_Select_Reactor_Token_T > { public: // = Initialization and termination methods. ACE_Guard (ACE_Select_Reactor_Token_T &) {} ACE_Guard (ACE_Select_Reactor_Token_T &, int) {} ~ACE_Guard (void) {} int acquire (void) { return 0; } int tryacquire (void) { return 0; } int release (void) { return 0; } int locked (void) { return 1; } int remove (void) { return 0; } void dump (void) const {} private: // = Prevent assignment and initialization. ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Guard< ACE_Select_Reactor_Token_T > &)) ACE_UNIMPLEMENTED_FUNC (ACE_Guard (const ACE_Guard< ACE_Select_Reactor_Token_T > &)) }; #include "ace/post.h" #endif /* ACE_SELECT_REACTOR_H */