about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-03-31 10:47:17 +0000
committerAndreas Jaeger <aj@suse.de>2000-03-31 10:47:17 +0000
commit88fdf42fbb6046b9452809210b8815e4ac5c2514 (patch)
tree625364bed58c6b9acf4811da03fdb68d14318664
parente7960df50cd30e2475cf237fa4c0e1257bb285a3 (diff)
downloadglibc-88fdf42fbb6046b9452809210b8815e4ac5c2514.tar.gz
glibc-88fdf42fbb6046b9452809210b8815e4ac5c2514.tar.xz
glibc-88fdf42fbb6046b9452809210b8815e4ac5c2514.zip
Update.
	* sysdeps/generic/ldsodefs.h: DT_INIT_ARRAY is not relocated
	  anymore, update comment.
-rw-r--r--ChangeLog3
-rw-r--r--sysdeps/generic/ldsodefs.h8
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 49b796192a..83b7fc1f8d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2000-03-31  Andreas Jaeger  <aj@suse.de>
 
+	* sysdeps/generic/ldsodefs.h: DT_INIT_ARRAY is not relocated
+	  anymore, update comment.
+
 	* sysdeps/unix/sysv/linux/shmctl.c: Likewise.
 
 	* sysdeps/unix/sysv/linux/semctl.c (struct __old_semid_ds): Remove
diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h
index bc4ece2a7e..023cdfe26a 100644
--- a/sysdeps/generic/ldsodefs.h
+++ b/sysdeps/generic/ldsodefs.h
@@ -38,10 +38,10 @@ __BEGIN_DECLS
 
 /* All references to the value of l_info[DT_PLTGOT],
   l_info[DT_STRTAB], l_info[DT_SYMTAB], l_info[DT_RELA],
-  l_info[DT_REL], l_info[DT_JMPREL], l_info[VERSYMIDX (DT_VERSYM)],
-  and l_info[DT_INIT_ARRAY] have to accessed via the D_PTR macro.  The
-  macro is needed since for most architectures the entry is already
-  relocated - but for some not and we need to relocate at access time.  */
+  l_info[DT_REL], l_info[DT_JMPREL], and l_info[VERSYMIDX (DT_VERSYM)]
+  have to accessed via the D_PTR macro.  The macro is needed since for
+  most architectures the entry is already relocated - but for some not
+  and we need to relocate at access time.  */
 #ifdef DL_RO_DYN_SECTION
 # define D_PTR(map,i) (map->i->d_un.d_ptr + map->l_addr)
 #else