]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/i386/dl-lookupcfg.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / i386 / dl-lookupcfg.h
index 8daf7a8a751f75269ffe63a69f99396443b26b41..52898de030aa798c6e5add1aa186e940ceddce90 100644 (file)
@@ -1,5 +1,5 @@
-/* Configuration of lookup functions.  i386 version.
-   Copyright (C) 2000, 2002 Free Software Foundation, Inc.
+/* Configuration of lookup functions.
+   Copyright (C) 2005-2019 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
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
-
-#include <tls.h>
-
-/* Some platforms need more information from the symbol lookup function
-   than just the address.  For x86 we need it when we support TLS.  */
-#ifdef USE_TLS
-# define DL_LOOKUP_RETURNS_MAP
-#else
-# undef DL_LOOKUP_RETURNS_MAP
-#endif
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#define DL_UNMAP_IS_SPECIAL
+
+#include_next <dl-lookupcfg.h>
+
+/* Address of protected data defined in the shared library may be
+   external due to copy relocation.   */
+#define DL_EXTERN_PROTECTED_DATA
+
+struct link_map;
+
+extern void _dl_unmap (struct link_map *map) attribute_hidden;
+
+#define DL_UNMAP(map) _dl_unmap (map)