diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-12-24 22:00:00 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-12-24 22:00:00 +0000 |
commit | 54a6e11583a546127a5511c93c9aaaa7aa9e5b62 (patch) | |
tree | 0bf58b2fa9f894b8be1dfebb6586b0da21a34594 /ace/Reactor.h | |
parent | 7a6d6d39c941f82e770afde209c17084e930f732 (diff) | |
download | ATCD-54a6e11583a546127a5511c93c9aaaa7aa9e5b62.tar.gz |
ChangeLogTag:Mon Dec 24 08:08:40 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
Diffstat (limited to 'ace/Reactor.h')
-rw-r--r-- | ace/Reactor.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/Reactor.h b/ace/Reactor.h index a17ecb690b8..07d2bc98bdd 100644 --- a/ace/Reactor.h +++ b/ace/Reactor.h @@ -66,11 +66,11 @@ public: /** * You can add a hook to various run_event methods and the hook will * be called after handling every reactor event. If this function - * returns 0, run_reactor_event_loop will check for the return value of - * handle_event. If it is -1, the the run_reactor_event_loop will return - * (pre-maturely.) + * returns 0, <run_reactor_event_loop> will check for the return + * value of <handle_event>. If it is -1, the + * <run_reactor_event_loop> will return (pre-maturely.) */ - typedef int (*REACTOR_EVENT_HOOK)(void*); + typedef int (*REACTOR_EVENT_HOOK)(ACE_Reactor *); /// Get pointer to a process-wide <ACE_Reactor>. static ACE_Reactor *instance (void); @@ -143,7 +143,7 @@ public: * Therefore, we must check for the reconfiguration request and * handle it after handling an event. */ - static int check_reconfiguration (void *); + static int check_reconfiguration (ACE_Reactor *); // = Reactor event loop management methods. |