2003-09-09 07:01:01 +00:00
|
|
|
/* This file is included by pthread_create.c to define in libpthread
|
|
|
|
all the magic symbols required by libthread_db.
|
|
|
|
|
2021-01-02 19:32:25 +00:00
|
|
|
Copyright (C) 2003-2021 Free Software Foundation, Inc.
|
2003-09-09 07:01:01 +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-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2003-09-09 07:01:01 +00:00
|
|
|
|
2013-05-01 15:46:34 +00:00
|
|
|
#include <stdint.h>
|
2003-09-09 07:01:01 +00:00
|
|
|
#include "thread_dbP.h"
|
|
|
|
#include <tls.h>
|
2015-03-17 04:14:11 +00:00
|
|
|
#include <ldsodefs.h>
|
2003-09-09 07:01:01 +00:00
|
|
|
|
|
|
|
typedef struct pthread pthread;
|
|
|
|
typedef struct pthread_key_struct pthread_key_struct;
|
|
|
|
typedef struct pthread_key_data pthread_key_data;
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
struct pthread_key_data data[PTHREAD_KEY_2NDLEVEL_SIZE];
|
|
|
|
}
|
|
|
|
pthread_key_data_level2;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
union dtv dtv[UINT32_MAX / 2 / sizeof (union dtv)]; /* No constant bound. */
|
|
|
|
} dtv;
|
|
|
|
|
|
|
|
typedef struct link_map link_map;
|
2015-03-17 04:14:11 +00:00
|
|
|
typedef struct rtld_global rtld_global;
|
|
|
|
typedef struct dtv_slotinfo_list dtv_slotinfo_list;
|
|
|
|
typedef struct dtv_slotinfo dtv_slotinfo;
|
2003-09-09 07:01:01 +00:00
|
|
|
|
|
|
|
#define schedparam_sched_priority schedparam.sched_priority
|
|
|
|
|
|
|
|
#define eventbuf_eventmask eventbuf.eventmask
|
|
|
|
#define eventbuf_eventmask_event_bits eventbuf.eventmask.event_bits
|
|
|
|
|
|
|
|
#define DESC(name, offset, obj) \
|
|
|
|
DB_DEFINE_DESC (name, 8 * sizeof (obj), 1, offset);
|
|
|
|
#define ARRAY_DESC(name, offset, obj) \
|
|
|
|
DB_DEFINE_DESC (name, \
|
|
|
|
8 * sizeof (obj)[0], sizeof (obj) / sizeof (obj)[0], \
|
|
|
|
offset);
|
2019-11-12 11:41:34 +00:00
|
|
|
/* Flexible arrays do not have a length that can be determined. */
|
|
|
|
#define FLEXIBLE_ARRAY_DESC(name, offset, obj) \
|
|
|
|
DB_DEFINE_DESC (name, 8 * sizeof (obj)[0], 0, offset);
|
2003-09-09 07:01:01 +00:00
|
|
|
|
|
|
|
#if TLS_TCB_AT_TP
|
|
|
|
# define dtvp header.dtv
|
|
|
|
#elif TLS_DTV_AT_TP
|
2004-03-14 03:39:57 +00:00
|
|
|
/* Special case hack. If TLS_TCB_SIZE == 0 (on PowerPC), there is no TCB
|
|
|
|
containing the DTV at the TP, but actually the TCB lies behind the TP,
|
|
|
|
i.e. at the very end of the area covered by TLS_PRE_TCB_SIZE. */
|
2003-09-09 07:01:01 +00:00
|
|
|
DESC (_thread_db_pthread_dtvp,
|
2004-03-14 03:39:57 +00:00
|
|
|
TLS_PRE_TCB_SIZE + offsetof (tcbhead_t, dtv)
|
2006-10-31 17:34:40 +00:00
|
|
|
- (TLS_TCB_SIZE == 0 ? sizeof (tcbhead_t) : 0), union dtv *)
|
2003-09-09 07:01:01 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#define DB_STRUCT(type) \
|
|
|
|
const uint32_t _thread_db_sizeof_##type = sizeof (type);
|
|
|
|
#define DB_STRUCT_FIELD(type, field) \
|
|
|
|
DESC (_thread_db_##type##_##field, \
|
|
|
|
offsetof (type, field), ((type *) 0)->field)
|
|
|
|
#define DB_STRUCT_ARRAY_FIELD(type, field) \
|
|
|
|
ARRAY_DESC (_thread_db_##type##_##field, \
|
|
|
|
offsetof (type, field), ((type *) 0)->field)
|
2019-11-12 11:41:34 +00:00
|
|
|
#define DB_STRUCT_FLEXIBLE_ARRAY(type, field) \
|
|
|
|
FLEXIBLE_ARRAY_DESC (_thread_db_##type##_##field, \
|
|
|
|
offsetof (type, field), ((type *) 0)->field)
|
2003-09-09 07:01:01 +00:00
|
|
|
#define DB_VARIABLE(name) DESC (_thread_db_##name, 0, name)
|
|
|
|
#define DB_ARRAY_VARIABLE(name) ARRAY_DESC (_thread_db_##name, 0, name)
|
|
|
|
#define DB_SYMBOL(name) /* Nothing. */
|
2003-12-18 02:51:04 +00:00
|
|
|
#define DB_FUNCTION(name) /* Nothing. */
|
2003-09-09 07:01:01 +00:00
|
|
|
#include "structs.def"
|
|
|
|
#undef DB_STRUCT
|
|
|
|
#undef DB_STRUCT_FIELD
|
|
|
|
#undef DB_SYMBOL
|
2003-12-18 02:51:04 +00:00
|
|
|
#undef DB_FUNCTION
|
2003-09-09 07:01:01 +00:00
|
|
|
#undef DB_VARIABLE
|
|
|
|
#undef DESC
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef DB_THREAD_SELF
|
|
|
|
# ifdef DB_THREAD_SELF_INCLUDE
|
|
|
|
# include DB_THREAD_SELF_INCLUDE
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* This macro is defined in the machine's tls.h using the three below. */
|
|
|
|
# define CONST_THREAD_AREA(bits, value) \
|
|
|
|
const uint32_t _thread_db_const_thread_area = (value);
|
|
|
|
# define REGISTER_THREAD_AREA(bits, regofs, scale) \
|
|
|
|
DB_DEFINE_DESC (_thread_db_register##bits##_thread_area, \
|
|
|
|
bits, (scale), (regofs));
|
2004-01-06 10:30:50 +00:00
|
|
|
# define REGISTER(bits, size, regofs, bias) \
|
|
|
|
DB_DEFINE_DESC (_thread_db_register##bits, size, (uint32_t)(bias), (regofs));
|
2003-09-09 07:01:01 +00:00
|
|
|
|
|
|
|
DB_THREAD_SELF
|
|
|
|
#endif
|