Blame sysdeps/arm/dl-tlsdesc.h

Packit 6c4009
/* Thread-local storage descriptor handling in the ELF dynamic linker.
Packit 6c4009
   ARM version.
Packit 6c4009
   Copyright (C) 2005-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; witout even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library.  If not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#ifndef _ARM_DL_TLSDESC_H
Packit 6c4009
# define _ARM_DL_TLSDESC_H 1
Packit 6c4009
Packit 6c4009
/* Type used to represent a TLS descriptor in the GOT.  */
Packit 6c4009
struct tlsdesc
Packit 6c4009
{
Packit 6c4009
  union
Packit 6c4009
    {
Packit 6c4009
      void *pointer;
Packit 6c4009
      long value;
Packit 6c4009
    } argument;
Packit 6c4009
  ptrdiff_t (*entry)(struct tlsdesc *);
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
Packit 6c4009
typedef struct dl_tls_index
Packit 6c4009
{
Packit 6c4009
  unsigned long int ti_module;
Packit 6c4009
  unsigned long int ti_offset;
Packit 6c4009
} tls_index;
Packit 6c4009
Packit 6c4009
/* Type used as the argument in a TLS descriptor for a symbol that
Packit 6c4009
   needs dynamic TLS offsets.  */
Packit 6c4009
struct tlsdesc_dynamic_arg
Packit 6c4009
{
Packit 6c4009
  tls_index tlsinfo;
Packit 6c4009
  size_t gen_count;
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
extern ptrdiff_t attribute_hidden
Packit 6c4009
  _dl_tlsdesc_return(struct tlsdesc *),
Packit 6c4009
  _dl_tlsdesc_undefweak(struct tlsdesc *);
Packit 6c4009
Packit 6c4009
# ifdef SHARED
Packit 6c4009
extern void *_dl_make_tlsdesc_dynamic (struct link_map *map, size_t ti_offset);
Packit 6c4009
Packit 6c4009
extern ptrdiff_t attribute_hidden
Packit 6c4009
  _dl_tlsdesc_dynamic(struct tlsdesc *);
Packit 6c4009
# endif
Packit 6c4009
Packit 6c4009
#endif