This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH v2 7/8] Always provide HP_SMALL_TIMING_AVAIL


---
 sysdeps/aarch64/hp-timing.h                  | 1 +
 sysdeps/generic/hp-timing.h                  | 1 +
 sysdeps/i386/i686/hp-timing.h                | 1 +
 sysdeps/ia64/hp-timing.h                     | 1 +
 sysdeps/powerpc/powerpc32/power4/hp-timing.h | 1 +
 sysdeps/powerpc/powerpc64/hp-timing.h        | 1 +
 sysdeps/sparc/sparc32/sparcv9/hp-timing.h    | 1 +
 sysdeps/sparc/sparc64/hp-timing.h            | 1 +
 sysdeps/x86_64/hp-timing.h                   | 1 +
 9 files changed, 9 insertions(+)

diff --git a/sysdeps/aarch64/hp-timing.h b/sysdeps/aarch64/hp-timing.h
index 18cb54f..614d8c5 100644
--- a/sysdeps/aarch64/hp-timing.h
+++ b/sysdeps/aarch64/hp-timing.h
@@ -22,6 +22,7 @@
 
 /* We always assume having the cycle counter register.  */
 #define HP_TIMING_AVAIL		(1)
+#define HP_SMALL_TIMING_AVAIL	(1)
 
 /* We indeed have inlined functions.  */
 #define HP_TIMING_INLINE	(1)
diff --git a/sysdeps/generic/hp-timing.h b/sysdeps/generic/hp-timing.h
index 95c051d..99f3456 100644
--- a/sysdeps/generic/hp-timing.h
+++ b/sysdeps/generic/hp-timing.h
@@ -26,6 +26,7 @@
 
 /* Provide dummy definitions.  */
 #define HP_TIMING_AVAIL		(0)
+#define HP_SMALL_TIMING_AVAIL	(0)
 #define HP_TIMING_INLINE	(0)
 typedef int hp_timing_t;
 #define HP_TIMING_NOW(var)
diff --git a/sysdeps/i386/i686/hp-timing.h b/sysdeps/i386/i686/hp-timing.h
index 512efc5..296a839 100644
--- a/sysdeps/i386/i686/hp-timing.h
+++ b/sysdeps/i386/i686/hp-timing.h
@@ -22,6 +22,7 @@
 
 /* We always assume having the timestamp register.  */
 #define HP_TIMING_AVAIL		(1)
+#define HP_SMALL_TIMING_AVAIL	(1)
 
 /* We indeed have inlined functions.  */
 #define HP_TIMING_INLINE	(1)
diff --git a/sysdeps/ia64/hp-timing.h b/sysdeps/ia64/hp-timing.h
index 3d441ff..8f19b41 100644
--- a/sysdeps/ia64/hp-timing.h
+++ b/sysdeps/ia64/hp-timing.h
@@ -22,6 +22,7 @@
 
 /* We always assume having the timestamp register.  */
 #define HP_TIMING_AVAIL		(1)
+#define HP_SMALL_TIMING_AVAIL	(1)
 
 /* We indeed have inlined functions.  */
 #define HP_TIMING_INLINE	(1)
diff --git a/sysdeps/powerpc/powerpc32/power4/hp-timing.h b/sysdeps/powerpc/powerpc32/power4/hp-timing.h
index f5237e3..76557df 100644
--- a/sysdeps/powerpc/powerpc32/power4/hp-timing.h
+++ b/sysdeps/powerpc/powerpc32/power4/hp-timing.h
@@ -22,6 +22,7 @@
 
 /* We always assume having the timestamp register.  */
 #define HP_TIMING_AVAIL		(1)
+#define HP_SMALL_TIMING_AVAIL	(1)
 
 /* We indeed have inlined functions.  */
 #define HP_TIMING_INLINE	(1)
diff --git a/sysdeps/powerpc/powerpc64/hp-timing.h b/sysdeps/powerpc/powerpc64/hp-timing.h
index d4fcb3d..028da9d 100644
--- a/sysdeps/powerpc/powerpc64/hp-timing.h
+++ b/sysdeps/powerpc/powerpc64/hp-timing.h
@@ -22,6 +22,7 @@
 
 /* We always assume having the timestamp register.  */
 #define HP_TIMING_AVAIL		(1)
+#define HP_SMALL_TIMING_AVAIL	(1)
 
 /* We indeed have inlined functions.  */
 #define HP_TIMING_INLINE	(1)
diff --git a/sysdeps/sparc/sparc32/sparcv9/hp-timing.h b/sysdeps/sparc/sparc32/sparcv9/hp-timing.h
index 4d9188f..a1f083d 100644
--- a/sysdeps/sparc/sparc32/sparcv9/hp-timing.h
+++ b/sysdeps/sparc/sparc32/sparcv9/hp-timing.h
@@ -21,6 +21,7 @@
 #define _HP_TIMING_H	1
 
 #define HP_TIMING_AVAIL		(1)
+#define HP_SMALL_TIMING_AVAIL	(1)
 #define HP_TIMING_INLINE	(1)
 
 typedef unsigned long long int hp_timing_t;
diff --git a/sysdeps/sparc/sparc64/hp-timing.h b/sysdeps/sparc/sparc64/hp-timing.h
index ea3ba9b..62da8bc 100644
--- a/sysdeps/sparc/sparc64/hp-timing.h
+++ b/sysdeps/sparc/sparc64/hp-timing.h
@@ -21,6 +21,7 @@
 #define _HP_TIMING_H	1
 
 #define HP_TIMING_AVAIL		(1)
+#define HP_SMALL_TIMING_AVAIL	(1)
 #define HP_TIMING_INLINE	(1)
 
 typedef unsigned long int hp_timing_t;
diff --git a/sysdeps/x86_64/hp-timing.h b/sysdeps/x86_64/hp-timing.h
index 89501fc..2d71f70 100644
--- a/sysdeps/x86_64/hp-timing.h
+++ b/sysdeps/x86_64/hp-timing.h
@@ -21,6 +21,7 @@
 
 /* We always assume having the timestamp register.  */
 #define HP_TIMING_AVAIL		(1)
+#define HP_SMALL_TIMING_AVAIL	(1)
 
 /* We indeed have inlined functions.  */
 #define HP_TIMING_INLINE	(1)
-- 
1.9.3


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]