diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-29 17:19:42 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-29 17:19:42 +0000 |
commit | 77a6b3bdad079adb356c90a5c2e786e5c0498317 (patch) | |
tree | 7f2710f4d01f00cc6f796d54d1e19a9b1f71c22d /ace/Reactor.cpp | |
parent | 5b360aa94ff9b75a6cd4ea51fc4744eb541743f0 (diff) | |
download | ATCD-77a6b3bdad079adb356c90a5c2e786e5c0498317.tar.gz |
Changed the default timer queue to timer heap instead of timer list
Diffstat (limited to 'ace/Reactor.cpp')
-rw-r--r-- | ace/Reactor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Reactor.cpp b/ace/Reactor.cpp index d15b66b2d11..9fe9cf696c6 100644 --- a/ace/Reactor.cpp +++ b/ace/Reactor.cpp @@ -1056,7 +1056,7 @@ ACE_Reactor::open (size_t size, if (result != -1 && this->timer_queue_ == 0) { - this->timer_queue_ = new ACE_Timer_List; + this->timer_queue_ = new ACE_Timer_Heap; if (this->timer_queue_ == 0) result = -1; |