summaryrefslogtreecommitdiff
path: root/ace/Timer_Hash_T.cpp
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>1997-08-12 20:02:37 +0000
committerSteve Huston <shuston@riverace.com>1997-08-12 20:02:37 +0000
commitd1de16994b18ce585da7a00e0cd2f202d3c9fb79 (patch)
treed36bd7ae076e9e07ba11ce9165000bee10e990ce /ace/Timer_Hash_T.cpp
parent2f0971d7c3544531ce7d9c11a79e4e4a99d9c6ba (diff)
downloadATCD-d1de16994b18ce585da7a00e0cd2f202d3c9fb79.tar.gz
Replaced references to ACE_High_Res_Timer::gettimeofday with
ACE_OS::gettimeofday. The High Res version is deprecated, and doesn't work right on HP-UX.
Diffstat (limited to 'ace/Timer_Hash_T.cpp')
-rw-r--r--ace/Timer_Hash_T.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Timer_Hash_T.cpp b/ace/Timer_Hash_T.cpp
index c2262dd52f0..156788c66da 100644
--- a/ace/Timer_Hash_T.cpp
+++ b/ace/Timer_Hash_T.cpp
@@ -200,12 +200,12 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, LOCK, BUCKET>::ACE_Timer_Hash_T (size_t table_si
{
ACE_TRACE ("ACE_Timer_Hash_T::ACE_Timer_Hash_T");
- this->gettimeofday (ACE_High_Res_Timer::gettimeofday);
+ this->gettimeofday (ACE_OS::gettimeofday);
for (size_t i = 0; i < table_size; i++)
{
this->table_[i] = new BUCKET (&this->table_functor_, this->free_list_);
- this->table_[i]->gettimeofday (ACE_High_Res_Timer::gettimeofday);
+ this->table_[i]->gettimeofday (ACE_OS::gettimeofday);
}
}
@@ -223,12 +223,12 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, LOCK, BUCKET>::ACE_Timer_Hash_T (FUNCTOR *upcall
{
ACE_TRACE ("ACE_Timer_Hash_T::ACE_Timer_Hash_T");
- this->gettimeofday (ACE_High_Res_Timer::gettimeofday);
+ this->gettimeofday (ACE_OS::gettimeofday);
for (size_t i = 0; i < this->table_size_; i++)
{
this->table_[i] = new BUCKET (&this->table_functor_, this->free_list_);
- this->table_[i]->gettimeofday (ACE_High_Res_Timer::gettimeofday);
+ this->table_[i]->gettimeofday (ACE_OS::gettimeofday);
}
}