2011-03-05 03:39:15 +00:00
|
|
|
/* Manage TLS descriptors. ARM version.
|
2018-01-01 00:32:25 +00:00
|
|
|
Copyright (C) 2005-2018 Free Software Foundation, Inc.
|
2011-03-05 03:39:15 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +00:00
|
|
|
License along with the GNU C Library. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2011-03-05 03:39:15 +00:00
|
|
|
|
|
|
|
#include <ldsodefs.h>
|
|
|
|
#include <tls.h>
|
|
|
|
#include <dl-tlsdesc.h>
|
2014-04-03 17:47:14 +00:00
|
|
|
#include <dl-unmap-segments.h>
|
2017-10-20 16:53:44 +00:00
|
|
|
#define _dl_tlsdesc_resolve_hold 0
|
2011-03-05 03:39:15 +00:00
|
|
|
#include <tlsdeschtab.h>
|
|
|
|
|
|
|
|
/* Unmap the dynamic object, but also release its TLS descriptor table
|
|
|
|
if there is one. */
|
|
|
|
|
|
|
|
void
|
|
|
|
_dl_unmap (struct link_map *map)
|
|
|
|
{
|
2014-04-03 17:47:14 +00:00
|
|
|
_dl_unmap_segments (map);
|
2011-03-05 03:39:15 +00:00
|
|
|
|
2014-07-07 14:14:26 +00:00
|
|
|
#ifdef SHARED
|
2011-03-05 03:39:15 +00:00
|
|
|
/* _dl_unmap is only called for dlopen()ed libraries, for which
|
|
|
|
calling free() is safe, or before we've completed the initial
|
|
|
|
relocation, in which case calling free() is probably pointless,
|
|
|
|
but still safe. */
|
|
|
|
if (map->l_mach.tlsdesc_table)
|
|
|
|
htab_delete (map->l_mach.tlsdesc_table);
|
|
|
|
#endif
|
|
|
|
}
|