OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [uClibc/] [libpthread/] [linuxthreads_db/] [td_ta_new.c] - Blame information for rev 1325

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1325 phoenix
/* Attach to target process.
2
   Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc.
3
   This file is part of the GNU C Library.
4
   Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
5
 
6
   The GNU C Library is free software; you can redistribute it and/or
7
   modify it under the terms of the GNU Lesser General Public
8
   License as published by the Free Software Foundation; either
9
   version 2.1 of the License, or (at your option) any later version.
10
 
11
   The GNU C Library is distributed in the hope that it will be useful,
12
   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
   Lesser General Public License for more details.
15
 
16
   You should have received a copy of the GNU Lesser General Public
17
   License along with the GNU C Library; if not, write to the Free
18
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19
   02111-1307 USA.  */
20
 
21
#include <stddef.h>
22
#include <stdlib.h>
23
#include <string.h>
24
 
25
#include "thread_dbP.h"
26
 
27
 
28
/* Datatype for the list of known thread agents.  Normally there will
29
   be exactly one so we don't spend much though on making it fast.  */
30
struct agent_list *__td_agent_list;
31
 
32
 
33
td_err_e
34
td_ta_new (struct ps_prochandle *ps, td_thragent_t **ta)
35
{
36
  psaddr_t addr;
37
  psaddr_t versaddr;
38
  char versbuf[sizeof (VERSION)];
39
  struct agent_list *elemp;
40
 
41
  LOG ("td_ta_new");
42
 
43
  /* Get the global event mask.  This is one of the variables which
44
     are new in the thread library to enable debugging.  If it is
45
     not available we cannot debug.  */
46
  if (td_lookup (ps, PTHREAD_THREADS_EVENTS, &addr) != PS_OK)
47
    return TD_NOLIBTHREAD;
48
 
49
  /* Check whether the versions match.  */
50
  if (td_lookup (ps, LINUXTHREADS_VERSION, &versaddr) != PS_OK)
51
    return TD_VERSION;
52
  if (ps_pdread (ps, versaddr, versbuf, sizeof (versbuf)) != PS_OK)
53
    return TD_ERR;
54
 
55
  versbuf[sizeof (versbuf) - 1] = '\0';
56
  if (strcmp (versbuf, VERSION) != 0)
57
    /* Not the right version.  */
58
    return TD_VERSION;
59
 
60
  /* Fill in the appropriate information.  */
61
  *ta = (td_thragent_t *) malloc (sizeof (td_thragent_t));
62
  if (*ta == NULL)
63
    return TD_MALLOC;
64
 
65
  /* Store the proc handle which we will pass to the callback functions
66
     back into the debugger.  */
67
  (*ta)->ph = ps;
68
 
69
  /* Remember the address.  */
70
  (*ta)->pthread_threads_eventsp = (td_thr_events_t *) addr;
71
 
72
  /* Get the pointer to the variable pointing to the thread descriptor
73
     with the last event.  */
74
  if (td_lookup (ps, PTHREAD_LAST_EVENT, &(*ta)->pthread_last_event) != PS_OK)
75
    {
76
    free_return:
77
      free (*ta);
78
      return TD_ERR;
79
    }
80
 
81
  /* Get the pointer to the variable containing the number of active
82
     threads.  */
83
  if (td_lookup (ps, PTHREAD_HANDLES_NUM, &(*ta)->pthread_handles_num)
84
      != PS_OK)
85
    goto free_return;
86
 
87
  /* See whether the library contains the necessary symbols.  */
88
  if (td_lookup (ps, PTHREAD_HANDLES, &addr) != PS_OK)
89
    goto free_return;
90
 
91
  (*ta)->handles = (struct pthread_handle_struct *) addr;
92
 
93
 
94
  if (td_lookup (ps, PTHREAD_KEYS, &addr) != PS_OK)
95
    goto free_return;
96
 
97
  /* Cast to the right type.  */
98
  (*ta)->keys = (struct pthread_key_struct *) addr;
99
 
100
  /* Find out about the maximum number of threads.  Old implementations
101
     don't provide this information.  In this case we assume that the
102
     debug  library is compiled with the same values.  */
103
  if (td_lookup (ps, LINUXTHREADS_PTHREAD_THREADS_MAX, &addr) != PS_OK)
104
    (*ta)->pthread_threads_max = PTHREAD_THREADS_MAX;
105
  else
106
    {
107
      if (ps_pdread (ps, addr, &(*ta)->pthread_threads_max, sizeof (int))
108
          != PS_OK)
109
        goto free_return;
110
    }
111
 
112
  /* Similar for the maximum number of thread local data keys.  */
113
  if (td_lookup (ps, LINUXTHREADS_PTHREAD_KEYS_MAX, &addr) != PS_OK)
114
    (*ta)->pthread_keys_max = PTHREAD_KEYS_MAX;
115
  else
116
    {
117
      if (ps_pdread (ps, addr, &(*ta)->pthread_keys_max, sizeof (int))
118
          != PS_OK)
119
        goto free_return;
120
    }
121
 
122
  /* And for the size of the second level arrays for the keys.  */
123
  if (td_lookup (ps, LINUXTHREADS_PTHREAD_SIZEOF_DESCR, &addr) != PS_OK)
124
    (*ta)->sizeof_descr = sizeof (struct _pthread_descr_struct);
125
  else
126
    {
127
      if (ps_pdread (ps, addr, &(*ta)->sizeof_descr, sizeof (int)) != PS_OK)
128
        goto free_return;
129
    }
130
 
131
  /* Now add the new agent descriptor to the list.  */
132
  elemp = (struct agent_list *) malloc (sizeof (struct agent_list));
133
  if (elemp == NULL)
134
    {
135
      /* Argh, now that everything else worked...  */
136
      free (*ta);
137
      return TD_MALLOC;
138
    }
139
 
140
  /* We don't care for thread-safety here.  */
141
  elemp->ta = *ta;
142
  elemp->next = __td_agent_list;
143
  __td_agent_list = elemp;
144
 
145
  return TD_OK;
146
}

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.