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/ReactorEx.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/ReactorEx.cpp')
-rw-r--r-- | ace/ReactorEx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/ReactorEx.cpp b/ace/ReactorEx.cpp index b38739a450f..a83fbbb6259 100644 --- a/ace/ReactorEx.cpp +++ b/ace/ReactorEx.cpp @@ -760,7 +760,7 @@ ACE_ReactorEx::open (size_t size, if (tq == 0) { - ACE_NEW_RETURN (this->timer_queue_, ACE_Timer_List, -1); + ACE_NEW_RETURN (this->timer_queue_, ACE_Timer_Heap, -1); this->delete_timer_queue_ = 1; } else |