diff options
author | harrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-12-18 02:31:58 +0000 |
---|---|---|
committer | harrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-12-18 02:31:58 +0000 |
commit | 245993641ee7ed006d780646c2eeb0d1481e5de9 (patch) | |
tree | de9687568c30648ea19faedfa2a7f84c4a7de0aa /ace/Proactor.i | |
parent | dded16c0526c894602df980919c4a8caa62eab8b (diff) | |
download | ATCD-245993641ee7ed006d780646c2eeb0d1481e5de9.tar.gz |
Check the cool ChangeLog entries!!!
Diffstat (limited to 'ace/Proactor.i')
-rw-r--r-- | ace/Proactor.i | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Proactor.i b/ace/Proactor.i index fe58070da78..4baf12f51a6 100644 --- a/ace/Proactor.i +++ b/ace/Proactor.i @@ -27,7 +27,7 @@ ACE_INLINE int ACE_Proactor::cancel_timer (ACE_Event_Handler *handler) { ACE_TRACE ("ACE_Proactor::cancel_timer"); - return this->timer_queue_.cancel (handler); + return this->timer_queue_->cancel (handler); } ACE_INLINE int @@ -35,7 +35,7 @@ ACE_Proactor::cancel_timer (int timer_id, const void **arg) { ACE_TRACE ("ACE_Proactor::cancel_timer"); - return this->timer_queue_.cancel (timer_id, arg); + return this->timer_queue_->cancel (timer_id, arg); } ACE_INLINE ACE_HANDLE @@ -43,7 +43,7 @@ ACE_Proactor::get_handle (void) const { ACE_TRACE ("ACE_Proactor::get_handle"); - return this->global_handle_; + return this->shared_event_.handle (); } ACE_INLINE int |