2002-08-23  Ulrich Drepper  <drepper@redhat.com>

	* pthread.c (__linuxthreads_version): New global constant.
This commit is contained in:
Ulrich Drepper 2002-08-24 03:35:35 +00:00
parent 27692f8966
commit 069125e53a
7 changed files with 35 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2002-08-23 Ulrich Drepper <drepper@redhat.com>
* pthread.c (__linuxthreads_version): New global constant.
2002-08-23 Andreas Jaeger <aj@suse.de>
* sysdeps/x86_64/pt-machine.h: Use %fs instead of %gs

View file

@ -33,6 +33,7 @@
#include <ldsodefs.h>
#include <tls.h>
#include <locale.h> /* for __uselocale */
#include <version.h>
/* Sanity check. */
#if __ASSUME_REALTIME_SIGNALS && !defined __SIGRTMIN
@ -238,6 +239,8 @@ const int __linuxthreads_pthread_sizeof_descr
const int __linuxthreads_initial_report_events;
const char __linuxthreads_version[] = VERSION;
/* Forward declarations */
static void pthread_onexit_process(int retcode, void *arg);

View file

@ -1,3 +1,11 @@
2002-08-23 Ulrich Drepper <drepper@redhat.com>
* thread_dbP.h: Define LINUXTHREADS_VERSION.
* td_symbol_list.c (symbol_list_arr): Add LINUXTHREADS_VERSION string.
* td_ta_new.c (td_ta_new): After verifying the thread library is
there check version.
* thread_db.h: Add new error TD_VERSION.
2002-08-21 Roland McGrath <roland@redhat.com>
* td_thr_tls_get_addr.c (td_thr_tls_get_addr): __attribute_used__ ->

View file

@ -37,6 +37,7 @@ static const char *symbol_list_arr[] =
[LINUXTHREADS_DEATH_EVENT] = "__linuxthreads_death_event",
[LINUXTHREADS_REAP_EVENT] = "__linuxthreads_reap_event",
[LINUXTHREADS_INITIAL_REPORT_EVENTS] = "__linuxthreads_initial_report_events",
[LINUXTHREADS_VERSION] = "__linuxthreads_version",
[NUM_MESSAGES] = NULL
};

View file

@ -1,5 +1,5 @@
/* Attach to target process.
Copyright (C) 1999, 2001 Free Software Foundation, Inc.
Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@ -20,6 +20,8 @@
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include <version.h>
#include "thread_dbP.h"
@ -33,6 +35,8 @@ td_err_e
td_ta_new (struct ps_prochandle *ps, td_thragent_t **ta)
{
psaddr_t addr;
psaddr_t versaddr;
char versbuf[sizeof (VERSION)];
struct agent_list *elemp;
LOG ("td_ta_new");
@ -43,6 +47,17 @@ td_ta_new (struct ps_prochandle *ps, td_thragent_t **ta)
if (td_lookup (ps, PTHREAD_THREADS_EVENTS, &addr) != PS_OK)
return TD_NOLIBTHREAD;
/* Check whether the versions match. */
if (td_lookup (ps, LINUXTHREADS_VERSION, &versaddr) != PS_OK)
return TD_VERSION;
if (ps_pdread (ps, versaddr, versbuf, sizeof (versbuf)) != PS_OK)
return TD_ERR;
versbuf[sizeof (versbuf) - 1] = '\0';
if (strcmp (versbuf, VERSION) != 0)
/* Not the right version. */
return TD_VERSION;
/* Fill in the appropriate information. */
*ta = (td_thragent_t *) malloc (sizeof (td_thragent_t));
if (*ta == NULL)

View file

@ -52,7 +52,8 @@ typedef enum
TD_MALLOC, /* Out of memory. */
TD_PARTIALREG, /* Not entire register set was read or written. */
TD_NOXREGS, /* X register set not available for given thread. */
TD_NOTALLOC /* TLS memory not yet allocated. */
TD_NOTALLOC, /* TLS memory not yet allocated. */
TD_VERSION /* Version if libpthread and libthread_db do not match. */
} td_err_e;

View file

@ -24,6 +24,7 @@ enum
LINUXTHREADS_DEATH_EVENT,
LINUXTHREADS_REAP_EVENT,
LINUXTHREADS_INITIAL_REPORT_EVENTS,
LINUXTHREADS_VERSION,
NUM_MESSAGES
};