diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-02-06 00:55:46 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-02-06 00:55:46 +0000 |
commit | ec70c011557d0964dfc528d2d326d75526aec123 (patch) | |
tree | ca3440c580f185559c2d0508f968f27ee1630b45 /include/link.h | |
parent | 472d82fc06664bea2859cb94b4469c48af2d10d1 (diff) | |
download | glibc-ec70c011557d0964dfc528d2d326d75526aec123.zip glibc-ec70c011557d0964dfc528d2d326d75526aec123.tar.gz glibc-ec70c011557d0964dfc528d2d326d75526aec123.tar.bz2 |
Update.
* elf/dl-load.c (_dl_map_object_from_fd): Prevent dynamically
loading modules with the DF_STATIC_TLS flag set.
* elf/dynamic-link.h (elf_get_dynamic_info): Initialize l_flags
element.
* include/link.h (struct link_map): Add l_flags field.
* elf/elf.h (DF_STATIC_TLS): New definition.
Diffstat (limited to 'include/link.h')
-rw-r--r-- | include/link.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/link.h b/include/link.h index 5502bbf..0bb244d 100644 --- a/include/link.h +++ b/include/link.h @@ -237,6 +237,7 @@ struct link_map /* Various flag words. */ ElfW(Word) l_feature_1; ElfW(Word) l_flags_1; + ElfW(Word) l_flags; /* Temporarily used in `dl_close'. */ unsigned int l_idx; |