diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-01-27 21:30:46 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-01-27 21:30:46 +0000 |
commit | e8ed861df7f58c9663e9b63cc2f2ee5346a18f3b (patch) | |
tree | adfe079858f8bd8ffcb8c96a5adc9c5136b8f5be /elf/link.h | |
parent | bed12f78fab86b2349cab6e7f4c0e46bde5e9711 (diff) | |
download | glibc-e8ed861df7f58c9663e9b63cc2f2ee5346a18f3b.tar glibc-e8ed861df7f58c9663e9b63cc2f2ee5346a18f3b.tar.gz glibc-e8ed861df7f58c9663e9b63cc2f2ee5346a18f3b.tar.bz2 glibc-e8ed861df7f58c9663e9b63cc2f2ee5346a18f3b.zip |
Update.
2004-01-26 David Mosberger <davidm@hpl.hp.com>
* elf/link.h (struct dl_phdr_info): Fix typo in comment.
* elf/rtld.c (dl_main): After incrementing dl_nloaded, also
increment dl_load_adds.
* elf/dl-iteratephdr.c (__dl_iterate_phdr): Replace GL(dl_load_subs)
with equivalent GL(dl_load_adds - GL(dl_nloaded).
(dl_iterate_phdr): Likewise.
* elf/dl-close.c (_dl_close): Delete increment of GL(dl_load_subs).
* elf/dl-support.c: Remove global variable _dl_load_subs.
* sysdeps/generic/ldsodefs.h (struct rtld_global): Remove
_dl_load_subs member.
2004-01-27 Jakub Jelinek <jakub@redhat.com>
* elf/rtld.c (_dl_start_final): Don't set l_relro_* here.
(_dl_start): And neither here.
(dl_main): Set GL(dl_loaded)->l_relro_* and
GL(dl_rtld_map)->l_relro_*.
Diffstat (limited to 'elf/link.h')
-rw-r--r-- | elf/link.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/link.h b/elf/link.h index f6d76bdf35..6d5ad9d98c 100644 --- a/elf/link.h +++ b/elf/link.h @@ -103,7 +103,7 @@ struct dl_phdr_info /* Note: the next two members were introduced after the first version of this structure was available. Check the SIZE - argument pass to the dl_iterate_phdr() callback to determine + argument passed to the dl_iterate_phdr() callback to determine whether or not they are provided. */ /* Incremented when a new object may have been added. */ |