diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-03-24 10:14:22 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-03-24 10:14:22 -0700 |
commit | 4ad43b62d6b893e73d5af72565f23c064b9c59b5 (patch) | |
tree | 16f1d6f45ddbed3a8a17a8f8f29db240ef13b063 /include | |
parent | 9ac9129d496d27b93c6fdfe0a22b68b3e4ee55df (diff) | |
download | glibc-4ad43b62d6b893e73d5af72565f23c064b9c59b5.tar.gz |
Fix handling of STB_GNU_UNIQUE in LD_TRACE_PRELINKING
Diffstat (limited to 'include')
-rw-r--r-- | include/link.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/link.h b/include/link.h index 26c67438f0..9d1fc1a8fe 100644 --- a/include/link.h +++ b/include/link.h @@ -1,6 +1,6 @@ /* Data structure for communication from the run-time dynamic linker for loaded ELF shared objects. - Copyright (C) 1995-2006, 2007, 2009 Free Software Foundation, Inc. + Copyright (C) 1995-2006, 2007, 2009, 2010 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -188,6 +188,10 @@ struct link_map unsigned int l_contiguous:1; /* Nonzero if inter-segment holes are mprotected or if no holes are present at all. */ + unsigned int l_symbolic_in_local_scope:1; /* Nonzero if l_local_scope + during LD_TRACE_PRELINKING=1 + contains any DT_SYMBOLIC + libraries. */ /* Collected information about own RPATH directories. */ struct r_search_path_struct l_rpath_dirs; |