diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-05-05 13:48:48 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-05-05 13:48:48 +0000 |
commit | 168bce634a08775810144a43f8adaa33b92f7f4d (patch) | |
tree | fe708c5cc0a422802f56cad4bc0aed387ee977d6 /ace/Reactor.h | |
parent | 3db28a30e8d9d3354f40a4f6096f01e7d9210e03 (diff) | |
download | ATCD-168bce634a08775810144a43f8adaa33b92f7f4d.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Reactor.h')
-rw-r--r-- | ace/Reactor.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/ace/Reactor.h b/ace/Reactor.h index d881bdc6a64..d1fddb5103b 100644 --- a/ace/Reactor.h +++ b/ace/Reactor.h @@ -602,25 +602,26 @@ protected: // Do the work of actually binding the <handle> and <eh> with the // <mask>. + virtual int register_handler_i (const ACE_Handle_Set &handles, + ACE_Event_Handler *handler, + ACE_Reactor_Mask mask); + // Register a set of <handles>. + virtual int remove_handler_i (ACE_HANDLE handle, ACE_Reactor_Mask); // Do the work of actually unbinding the <handle> and <eh> with the // <mask>. + virtual int remove_handler_i (const ACE_Handle_Set &handles, + ACE_Reactor_Mask); + // Remove a set of <handles>. + virtual int suspend_i (ACE_HANDLE handle); // Suspend the <Event_Handler> associated with <handle> + virtual int resume_i (ACE_HANDLE handle); // Resume the <Event_Handler> associated with <handle> - virtual int remove_handler_i (const ACE_Handle_Set &handles, - ACE_Reactor_Mask); - // Remove a set of <handles>. - - virtual int register_handler_i (const ACE_Handle_Set &handles, - ACE_Event_Handler *handler, - ACE_Reactor_Mask mask); - // Register a set of <handles>. - virtual int handler_i (ACE_HANDLE handle, ACE_Reactor_Mask, ACE_Event_Handler ** = 0); |