diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-12-16 13:43:38 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-12-28 14:57:57 -0300 |
commit | a75b1e35c542342f3f3bc5c8ecc9c9c9c7a48c49 (patch) | |
tree | bf5958e08900106b0ed320a74e6cef34f8d702c4 /sysdeps/i386 | |
parent | 92ff345137bfc9e1ecf23c604b7022a25e36cb32 (diff) | |
download | glibc-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/i386')
-rw-r--r-- | sysdeps/i386/i686/memusage.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sysdeps/i386/i686/memusage.h b/sysdeps/i386/i686/memusage.h index 08b7831e12..07b241263c 100644 --- a/sysdeps/i386/i686/memusage.h +++ b/sysdeps/i386/i686/memusage.h @@ -16,6 +16,5 @@ <https://www.gnu.org/licenses/>. */ #define GETSP() ({ register uintptr_t stack_ptr asm ("esp"); stack_ptr; }) -#define GETTIME(low,high) asm ("rdtsc" : "=a" (low), "=d" (high)) #include <sysdeps/generic/memusage.h> |