diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-01-13 04:40:43 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-01-13 04:40:43 +0000 |
commit | e3a0ffa03433e389ca436b5b749fcb70950c4409 (patch) | |
tree | 09f268a4fc7b6fde778abdc2654d049ec6286fc2 /ace/Reactor.cpp | |
parent | 29c12e0e7f1f37d8513ef2bf3f55db868d41974d (diff) | |
download | ATCD-e3a0ffa03433e389ca436b5b749fcb70950c4409.tar.gz |
foo
Diffstat (limited to 'ace/Reactor.cpp')
-rw-r--r-- | ace/Reactor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ace/Reactor.cpp b/ace/Reactor.cpp index 814b82f35e7..e18dd4dc881 100644 --- a/ace/Reactor.cpp +++ b/ace/Reactor.cpp @@ -5,6 +5,7 @@ #include "ace/Synch_T.h" #include "ace/SOCK_Acceptor.h" #include "ace/SOCK_Connector.h" +#include "ace/Timer_List.h" #include "ace/Reactor.h" #if !defined (__ACE_INLINE__) @@ -858,7 +859,7 @@ ACE_Reactor::open (size_t size, // quickly due to the use of sockets as a notification // mechanism). At least this way the timer_queue_ isn't 0, so // we can still use the Reactor as a timer... - ACE_NEW_RETURN (this->timer_queue_, ACE_Timer_Queue, -1); + ACE_NEW_RETURN (this->timer_queue_, ACE_Timer_List, -1); this->delete_timer_queue_ = 1; } |