summaryrefslogtreecommitdiff
path: root/ace/Timer_Hash_T.cpp
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-06-04 20:11:31 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-06-04 20:11:31 +0000
commit1a0d5a5131a21fabe57314dfece47475ae729d5a (patch)
treece1788c3adf57f38298c4d838475b78b4ea4b366 /ace/Timer_Hash_T.cpp
parent08ac9cb33f66db10420b4825ec8d42ad82a31393 (diff)
downloadATCD-1a0d5a5131a21fabe57314dfece47475ae729d5a.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Timer_Hash_T.cpp')
-rw-r--r--ace/Timer_Hash_T.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/ace/Timer_Hash_T.cpp b/ace/Timer_Hash_T.cpp
index 8f5ba8e628b..ab3cdb2f809 100644
--- a/ace/Timer_Hash_T.cpp
+++ b/ace/Timer_Hash_T.cpp
@@ -201,10 +201,8 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, LOCK, BUCKET>::ACE_Timer_Hash_T (size_t table_si
for (size_t i = 0; i < table_size; i++)
{
- this->table_[i] = new BUCKET;
+ this->table_[i] = new BUCKET (&this->table_functor_, this->free_list_);
this->table_[i]->gettimeofday (ACE_High_Res_Timer::gettimeofday);
- this->table_[i]->set_upcall_functor (&this->table_functor_);
- this->table_[i]->free_list (this->free_list_);
}
this->table_functor_;