diff options
Diffstat (limited to 'externals/ace/Event_Handler.h')
-rw-r--r-- | externals/ace/Event_Handler.h | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/externals/ace/Event_Handler.h b/externals/ace/Event_Handler.h index 417f78578e7..2e1414ec336 100644 --- a/externals/ace/Event_Handler.h +++ b/externals/ace/Event_Handler.h @@ -4,7 +4,7 @@ /** * @file Event_Handler.h * - * $Id: Event_Handler.h 91066 2010-07-12 11:05:04Z johnnyw $ + * $Id: Event_Handler.h 86576 2009-08-29 22:42:51Z shuston $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -38,8 +38,7 @@ typedef unsigned long ACE_Reactor_Mask; /** * @class ACE_Event_Handler * - * @brief - * Provides an abstract interface for handling various types of + * @brief Provides an abstract interface for handling various types of * I/O, timer, and signal events. * * Subclasses read/write input/output on an I/O descriptor, @@ -95,9 +94,9 @@ public: // = Get/set priority + // Priorities run from MIN_PRIORITY (which is the "lowest priority") + // to MAX_PRIORITY (which is the "highest priority"). /// Get the priority of the Event_Handler. - /// @note Priorities run from MIN_PRIORITY (which is the "lowest priority") - /// to MAX_PRIORITY (which is the "highest priority"). virtual int priority (void) const; /// Set the priority of the Event_Handler. @@ -178,8 +177,8 @@ public: * non-sockets (such as ACE_STDIN). This is commonly used in * situations where the Reactor is used to demultiplex read events * on ACE_STDIN on UNIX. Note that @a event_handler must be a - * subclass of ACE_Event_Handler. If the get_handle() method of - * this event handler returns ACE_INVALID_HANDLE we default to + * subclass of ACE_Event_Handler. If the <get_handle> method of + * this event handler returns <ACE_INVALID_HANDLE> we default to * reading from ACE_STDIN. */ static ACE_THR_FUNC_RETURN read_adapter (void *event_handler); @@ -194,7 +193,7 @@ public: ACE_Thread_Manager *thr_mgr, int flags = THR_DETACHED); - /// Performs the inverse of the register_stdin_handler() method. + /// Performs the inverse of the <register_stdin_handler> method. static int remove_stdin_handler (ACE_Reactor *reactor, ACE_Thread_Manager *thr_mgr); @@ -239,8 +238,7 @@ public: /** * @class Reference_Counting_Policy * - * @brief - * This policy dictates the reference counting requirements + * @brief This policy dictates the reference counting requirements * for the handler. * * This policy allows applications to configure whether it wants the |