diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-17 22:22:15 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-17 22:22:15 +0000 |
commit | a79026674a7fb6803dc14d3db498536130dda0af (patch) | |
tree | 3c310a3ad3e0e6fac2b819a3f092e0cb0a8715de /ace/Profile_Timer.cpp | |
parent | 0186aa8f61bd210ae34deb661506a43e115df3e3 (diff) | |
download | ATCD-a79026674a7fb6803dc14d3db498536130dda0af.tar.gz |
ChangeLogTag:Sun Aug 17 17:02:53 1997 Carlos O'Ryan <coryan@swarm.cs.wustl.edu>
Diffstat (limited to 'ace/Profile_Timer.cpp')
-rw-r--r-- | ace/Profile_Timer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Profile_Timer.cpp b/ace/Profile_Timer.cpp index 3cc4ff69a29..dd7a82214bd 100644 --- a/ace/Profile_Timer.cpp +++ b/ace/Profile_Timer.cpp @@ -92,7 +92,7 @@ void ACE_Profile_Timer::compute_times (ACE_Elapsed_Time &et) { ACE_TRACE ("ACE_Profile_Timer::compute_times"); - timestruc_t td; + timespec_t td; ACE_Profile_Timer::Rusage &end = this->end_usage_; ACE_Profile_Timer::Rusage &begin = this->begin_usage_; @@ -108,7 +108,7 @@ ACE_Profile_Timer::compute_times (ACE_Elapsed_Time &et) // Determine the difference between T1 and T2. void -ACE_Profile_Timer::subtract (timestruc_t &tdiff, timestruc_t &t1, timestruc_t &t0) +ACE_Profile_Timer::subtract (timespec_t &tdiff, timespec_t &t1, timespec_t &t0) { ACE_TRACE ("ACE_Profile_Timer::subtract"); tdiff.tv_sec = t1.tv_sec - t0.tv_sec; |