about summary refs log tree commit diff
path: root/sysdeps/ia64
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2021-12-16 13:43:38 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2021-12-28 14:57:57 -0300
commita75b1e35c542342f3f3bc5c8ecc9c9c9c7a48c49 (patch)
treebf5958e08900106b0ed320a74e6cef34f8d702c4 /sysdeps/ia64
parent92ff345137bfc9e1ecf23c604b7022a25e36cb32 (diff)
downloadglibc-a75b1e35c542342f3f3bc5c8ecc9c9c9c7a48c49.tar.gz
glibc-a75b1e35c542342f3f3bc5c8ecc9c9c9c7a48c49.tar.xz
glibc-a75b1e35c542342f3f3bc5c8ecc9c9c9c7a48c49.zip
malloc: Use hp-timing on libmemusage
Instead of reimplemeting on GETTIME macro.
Diffstat (limited to 'sysdeps/ia64')
-rw-r--r--sysdeps/ia64/memusage.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/sysdeps/ia64/memusage.h b/sysdeps/ia64/memusage.h
index 3c3a526007..33fd6ec899 100644
--- a/sysdeps/ia64/memusage.h
+++ b/sysdeps/ia64/memusage.h
@@ -18,12 +18,5 @@
 #include <hp-timing.h>
 
 #define GETSP() ({ register uintptr_t stack_ptr asm ("%r12"); stack_ptr; })
-#define GETTIME(low, high) \
-  {									      \
-    hp_timing_t __now;							      \
-    HP_TIMING_NOW (__now);						      \
-    low = __now & 0xffffffff;						      \
-    high = __now >> 32;							      \
-  }
 
 #include <sysdeps/generic/memusage.h>