diff options
author | Andreas Krebbel <Andreas.Krebbel@de.ibm.com> | 2009-07-24 08:29:06 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-07-24 08:29:06 -0700 |
commit | f957edded874c786c51bc9264fa244cb18bc6568 (patch) | |
tree | 7018db7e26c57888f2495ef8926e08a8d24a546c /sysdeps/s390/dl-procinfo.h | |
parent | 01b597da400ef799a43f61fa31d305eb9db81670 (diff) | |
download | glibc-f957edded874c786c51bc9264fa244cb18bc6568.tar.gz glibc-f957edded874c786c51bc9264fa244cb18bc6568.tar.xz glibc-f957edded874c786c51bc9264fa244cb18bc6568.zip |
S/390: Hardware iconv modules.
Diffstat (limited to 'sysdeps/s390/dl-procinfo.h')
-rw-r--r-- | sysdeps/s390/dl-procinfo.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sysdeps/s390/dl-procinfo.h b/sysdeps/s390/dl-procinfo.h index 178d7cc017..0a7ebd3be9 100644 --- a/sysdeps/s390/dl-procinfo.h +++ b/sysdeps/s390/dl-procinfo.h @@ -1,5 +1,5 @@ /* s390 version of processor capability information handling macros. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006, 2009 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2006. @@ -22,9 +22,9 @@ #define _DL_PROCINFO_H 1 #include <ldsodefs.h> -#define _DL_HWCAP_COUNT 7 +#define _DL_HWCAP_COUNT 10 -#define _DL_PLATFORMS_COUNT 4 +#define _DL_PLATFORMS_COUNT 5 /* The kernel provides up to 32 capability bits with elf_hwcap. */ #define _DL_FIRST_PLATFORM 32 @@ -45,6 +45,9 @@ enum HWCAP_S390_LDISP = 1 << 4, HWCAP_S390_EIMM = 1 << 5, HWCAP_S390_DFP = 1 << 6, + HWCAP_S390_HPAGE = 1 << 7, + HWCAP_S390_ETF3EH = 1 << 8, + HWCAP_S390_HIGH_GPRS = 1 << 9, }; #define HWCAP_IMPORTANT (HWCAP_S390_ZARCH | HWCAP_S390_LDISP \ |