diff options
author | alex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-17 01:40:24 +0000 |
---|---|---|
committer | alex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-17 01:40:24 +0000 |
commit | adaacd03fe17e45cc70a1bec08ecd8d96213b50a (patch) | |
tree | acce9a30a0f6d2b1741509e1d44967b663b5a829 /ace/Proactor.cpp | |
parent | 595b2189e12285fcf6a932357962bd2aacc8bd58 (diff) | |
download | ATCD-adaacd03fe17e45cc70a1bec08ecd8d96213b50a.tar.gz |
Switched the order of TIMER_QUEUE and delete_implementation in the
constructor.
Diffstat (limited to 'ace/Proactor.cpp')
-rw-r--r-- | ace/Proactor.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Proactor.cpp b/ace/Proactor.cpp index c2cf0b4b0c1..6e16958df67 100644 --- a/ace/Proactor.cpp +++ b/ace/Proactor.cpp @@ -107,12 +107,12 @@ ACE_Proactor_Timer_Handler::svc (void) absolute_time = this->proactor_.timer_queue ()->earliest_time () - this->proactor_.timer_queue ()->gettimeofday (); - // #if 0 +#if 0 ACE_DEBUG ((LM_DEBUG, "%N%l:(%t):Earliest Time %d sec, %d msec time\n", absolute_time.sec (), absolute_time.msec ())); - // #endif +#endif // Make it zero if it is negative. if (absolute_time < ACE_Time_Value::zero) absolute_time = ACE_Time_Value::zero; @@ -230,8 +230,8 @@ ACE_Proactor_Handle_Timeout_Upcall::proactor (ACE_Proactor &proactor) // ********************************************************************* ACE_Proactor::ACE_Proactor (ACE_Proactor_Impl *implementation, - TIMER_QUEUE *tq, - int delete_implementation) + int delete_implementation, + TIMER_QUEUE *tq) : implementation_ (0), delete_implementation_ (delete_implementation), timer_handler_ (0), |