diff options
author | Stefan Liebler <stli@linux.ibm.com> | 2019-09-19 12:24:10 +0200 |
---|---|---|
committer | Stefan Liebler <stli@linux.ibm.com> | 2019-09-19 12:24:10 +0200 |
commit | 73d9051da47eda4c69397df6e7468087975fcf47 (patch) | |
tree | 183bb4d1b2886015d794dd0074c63f3a59352834 | |
parent | 0f02b6cfc44af73d4d4363c46b3cbb18b8ff9171 (diff) | |
download | glibc-73d9051da47eda4c69397df6e7468087975fcf47.tar glibc-73d9051da47eda4c69397df6e7468087975fcf47.tar.gz glibc-73d9051da47eda4c69397df6e7468087975fcf47.tar.bz2 glibc-73d9051da47eda4c69397df6e7468087975fcf47.zip |
S390: Use _HP_TIMING_S390_H instead of _HP_TIMING_H.
Use macro _HP_TIMING_S390_H instead of _HP_TIMING_H
in s390 specific hp-timing.h
ChangeLog:
* sysdeps/s390/hp-timing.h (_HP_TIMING_H): Undefine.
(_HP_TIMING_S390_H): Define.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/s390/hp-timing.h | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2019-09-19 Stefan Liebler <stli@linux.ibm.com> + + * sysdeps/s390/hp-timing.h (_HP_TIMING_H): Undefine. + (_HP_TIMING_S390_H): Define. + 2019-09-18 Joseph Myers <joseph@codesourcery.com> * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel diff --git a/sysdeps/s390/hp-timing.h b/sysdeps/s390/hp-timing.h index 793fb66a4d..c5c605c937 100644 --- a/sysdeps/s390/hp-timing.h +++ b/sysdeps/s390/hp-timing.h @@ -16,12 +16,12 @@ License along with the GNU C Library. If not, see <https://www.gnu.org/licenses/>. */ -#ifndef _HP_TIMING_H +#ifndef _HP_TIMING_S390_H +#define _HP_TIMING_S390_H 1 /* The stckf instruction is available starting with z9-109 zarch CPUs. As there is no extra configure check for z9-109, the z10 one is used. */ #ifdef HAVE_S390_MIN_Z10_ZARCH_ASM_SUPPORT -# define _HP_TIMING_H 1 # include <hp-timing-common.h> /* We use 64 bit values for the times. |