summaryrefslogtreecommitdiff
path: root/ACE/ace/Profile_Timer.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2023-02-01 14:38:17 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2023-02-01 14:38:17 +0100
commit9d3475584970e20117a7a99d3a75fecb521a0da9 (patch)
tree1df17ddc12077b570faed0459cb5bccc2e6439eb /ACE/ace/Profile_Timer.cpp
parent980b4296358a1b3f0f3ffde85c2826eeeb240637 (diff)
downloadATCD-9d3475584970e20117a7a99d3a75fecb521a0da9.tar.gz
Further cleanup not used macros
* ACE/ace/IOStream.h: * ACE/ace/OS_NS_Thread.cpp: * ACE/ace/OS_NS_Thread.inl: * ACE/ace/Profile_Timer.cpp: * ACE/ace/README: * ACE/ace/os_include/os_netdb.h: * ACE/ace/os_include/sys/os_loadavg.h: * ACE/ace/os_include/sys/os_pstat.h:
Diffstat (limited to 'ACE/ace/Profile_Timer.cpp')
-rw-r--r--ACE/ace/Profile_Timer.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/ACE/ace/Profile_Timer.cpp b/ACE/ace/Profile_Timer.cpp
index 838e7860b8a..dbfe197d690 100644
--- a/ACE/ace/Profile_Timer.cpp
+++ b/ACE/ace/Profile_Timer.cpp
@@ -64,7 +64,6 @@ void
ACE_Profile_Timer::elapsed_rusage (ACE_Profile_Timer::Rusage &usage)
{
ACE_TRACE ("ACE_Profile_Timer::elapsed_rusage");
-# if !defined (ACE_HAS_LIMITED_RUSAGE_T)
// integral shared memory size
usage.ru_ixrss =
this->end_usage_.ru_ixrss - this->last_usage_.ru_ixrss;
@@ -110,9 +109,6 @@ ACE_Profile_Timer::elapsed_rusage (ACE_Profile_Timer::Rusage &usage)
this->subtract (usage.ru_stime,
this->end_usage_.ru_stime,
this->last_usage_.ru_stime);
-# else
- ACE_UNUSED_ARG(usage);
-# endif /* ACE_HAS_LIMITED_RUSAGE_T */
}
void