diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2000-07-19 18:22:41 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2000-07-19 18:22:41 +0000 |
commit | df70244cd332cd0fe353e4593c7d974b9e5bcf0d (patch) | |
tree | a372bf3aebdf2ca820e3c8d2f448135caaba239d /include | |
parent | dcefbbbda0f35b8ee3bb36d7bba65fec0a1d5d63 (diff) | |
download | gdb-df70244cd332cd0fe353e4593c7d974b9e5bcf0d.zip gdb-df70244cd332cd0fe353e4593c7d974b9e5bcf0d.tar.gz gdb-df70244cd332cd0fe353e4593c7d974b9e5bcf0d.tar.bz2 |
2000-07-19 H.J. Lu <hjl@gnu.org>
* common.h (DT_CHECKSUM): Set to 0x6ffffdf8.
(DTF_1_CONFEXP): It is 0x00000002 as suspected.
Diffstat (limited to 'include')
-rw-r--r-- | include/elf/ChangeLog | 5 | ||||
-rw-r--r-- | include/elf/common.h | 15 |
2 files changed, 9 insertions, 11 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index 628f2bc..2b26c5d 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,5 +1,10 @@ 2000-07-19 H.J. Lu <hjl@gnu.org> + * common.h (DT_CHECKSUM): Set to 0x6ffffdf8. + (DTF_1_CONFEXP): It is 0x00000002 as suspected. + +2000-07-19 H.J. Lu <hjl@gnu.org> + * common.h (DT_FEATURE): Renamed from DT_FEATURE_1. (DT_CONFIG): New. From Solaris 8. (DT_DEPAUDIT): Likewise. diff --git a/include/elf/common.h b/include/elf/common.h index c41b7e6..08364da 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -444,6 +444,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ OS specific values. This is a deliberate special case and we maintain it for backwards compatability. */ #define DT_VALRNGLO 0x6ffffd00 +#define DT_CHECKSUM 0x6ffffdf8 #define DT_PLTPADSZ 0x6ffffdf9 #define DT_MOVEENT 0x6ffffdfa #define DT_MOVESZ 0x6ffffdfb @@ -483,23 +484,15 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define DT_USED 0x7ffffffe #define DT_FILTER 0x7fffffff -/* FIXME: From - - http://docs.sun.com:80/ab2/coll.45.13/LLM/@Ab2PageView/21165?Ab2Lang=C&Ab2Enc=iso-8859-1 - - DT_CHECKSUM is mentioned. But it is not in the table. Someone should - check <sys/link.h> on Solaris 8. */ -#define DT_CHECKSUM 0 - /* Values used in DT_FEATURE .dynamic entry. */ #define DTF_1_PARINIT 0x00000001 -/* FIXME: From +/* From http://docs.sun.com:80/ab2/coll.45.13/LLM/@Ab2PageView/21165?Ab2Lang=C&Ab2Enc=iso-8859-1 - DTF_1_CONFEXP is the same as DTF_1_PARINIT. I think it is a typo. - Someone should check <sys/link.h> on Solaris 8. */ + DTF_1_CONFEXP is the same as DTF_1_PARINIT. It is a typo. The value + defined here is the same as the one in <sys/link.h> on Solaris 8. */ #define DTF_1_CONFEXP 0x00000002 /* Flag values used in the DT_POSFLAG_1 .dynamic entry. */ |