From 46812607db68d7b47e6fda7a70c47ab3a2594390 Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Mon, 8 Jan 2007 11:23:57 +0000 Subject: Mon Jan 8 11:23:30 UTC 2007 Johnny Willemsen --- ACE/ChangeLog | 8 ++++++++ ACE/ace/Select_Reactor_T.h | 18 +++++++++--------- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/ACE/ChangeLog b/ACE/ChangeLog index c4344b3dcd7..e82bdce782c 100644 --- a/ACE/ChangeLog +++ b/ACE/ChangeLog @@ -1,3 +1,11 @@ +Mon Jan 8 11:23:30 UTC 2007 Johnny Willemsen + + * ace/Select_Reactor_T.h (open): + Also use ACE_DISABLE_NOTIFY_PIPE_DEFAULT as default for disable_notify_pipe + + * ace/Select_Reactor_T.h: + Doxygen improvements + Mon Jan 8 10:45:30 UTC 2007 Johnny Willemsen * ace/Select_Reactor_Base.h: diff --git a/ACE/ace/Select_Reactor_T.h b/ACE/ace/Select_Reactor_T.h index ad70f48cdeb..751c25d17aa 100644 --- a/ACE/ace/Select_Reactor_T.h +++ b/ACE/ace/Select_Reactor_T.h @@ -118,11 +118,11 @@ public: int restart = 0, ACE_Sig_Handler * = 0, ACE_Timer_Queue * = 0, - int disable_notify_pipe = 0, + int disable_notify_pipe = ACE_DISABLE_NOTIFY_PIPE_DEFAULT, ACE_Reactor_Notify * = 0); /// Returns -1 (not used in this implementation); - virtual int current_info (ACE_HANDLE, size_t & /* size */); + virtual int current_info (ACE_HANDLE, size_t &size); /// Use a user specified signal handler instead. virtual int set_sig_handler (ACE_Sig_Handler *signal_handler); @@ -146,7 +146,7 @@ public: * but does not actually dispatch the event handlers. By default, * don't block while checking this, i.e., "poll". */ - virtual int work_pending (const ACE_Time_Value &max_wait_time = ACE_Time_Value::zero); + virtual int work_pending (const ACE_Time_Value &max_wait_time = ACE_Time_Value::zero); /** * This event loop driver that blocks for @a max_wait_time before @@ -200,7 +200,7 @@ public: // = Register and remove ACE_Event_Handlers. /** - * Register a with a particular . Note that the + * Register a @a eh with a particular @a mask. Note that the * will call to * extract the underlying I/O handle. */ @@ -244,9 +244,9 @@ public: ACE_Reactor_Mask mask); /** - * Register to handle the signal using the - * . Returns the that was previously registered - * (if any), along with the of the signal handler. + * Register @a new_sh to handle the signal @a signum using the + * @a new_disp. Returns the @a old_sh that was previously registered + * (if any), along with the @a old_disp of the signal handler. */ virtual int register_handler (int signum, ACE_Event_Handler *new_sh, @@ -254,8 +254,8 @@ public: ACE_Event_Handler **old_sh = 0, ACE_Sig_Action *old_disp = 0); - /// Registers to handle a set of signals using the - /// . + /// Registers @a new_sh to handle a set of signals @a sigset using the + /// @a new_disp. virtual int register_handler (const ACE_Sig_Set &sigset, ACE_Event_Handler *new_sh, ACE_Sig_Action *new_disp = 0); -- cgit v1.2.1