summaryrefslogtreecommitdiff
path: root/ace/Reactor.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-12-24 22:00:00 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-12-24 22:00:00 +0000
commit54a6e11583a546127a5511c93c9aaaa7aa9e5b62 (patch)
tree0bf58b2fa9f894b8be1dfebb6586b0da21a34594 /ace/Reactor.cpp
parent7a6d6d39c941f82e770afde209c17084e930f732 (diff)
downloadATCD-54a6e11583a546127a5511c93c9aaaa7aa9e5b62.tar.gz
ChangeLogTag:Mon Dec 24 08:08:40 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
Diffstat (limited to 'ace/Reactor.cpp')
-rw-r--r--ace/Reactor.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/Reactor.cpp b/ace/Reactor.cpp
index bec21419751..1ce3989b249 100644
--- a/ace/Reactor.cpp
+++ b/ace/Reactor.cpp
@@ -127,7 +127,7 @@ ACE_Reactor::close_singleton (void)
}
int
-ACE_Reactor::check_reconfiguration (void *)
+ACE_Reactor::check_reconfiguration (ACE_Reactor *)
{
#if !defined (ACE_HAS_WINCE) && !defined (ACE_LACKS_ACE_SVCCONF)
if (ACE_Service_Config::reconfig_occurred ())
@@ -151,7 +151,7 @@ ACE_Reactor::run_reactor_event_loop (REACTOR_EVENT_HOOK eh)
{
int result = this->implementation_->handle_events ();
- if (eh != 0 && (*eh)(0))
+ if (eh != 0 && (*eh)(this))
continue;
else if (result == -1 && this->implementation_->deactivated ())
return 0;
@@ -174,7 +174,7 @@ ACE_Reactor::run_alertable_reactor_event_loop (REACTOR_EVENT_HOOK eh)
{
int result = this->implementation_->alertable_handle_events ();
- if (eh != 0 && (*eh)(0))
+ if (eh != 0 && (*eh)(this))
continue;
else if (result == -1 && this->implementation_->deactivated ())
return 0;
@@ -198,7 +198,7 @@ ACE_Reactor::run_reactor_event_loop (ACE_Time_Value &tv,
{
int result = this->implementation_->handle_events (tv);
- if (eh != 0 && (*eh) (0))
+ if (eh != 0 && (*eh) (this))
continue;
else if (result == -1)
{
@@ -240,7 +240,7 @@ ACE_Reactor::run_alertable_reactor_event_loop (ACE_Time_Value &tv,
{
int result = this->implementation_->alertable_handle_events (tv);
- if (eh != 0 && (*eh)(0))
+ if (eh != 0 && (*eh)(this))
continue;
else if (result == -1 && this->implementation_->deactivated ())
return 0;