]> git.ipfire.org Git - thirdparty/glibc.git/blame - nptl_db/structs.def
* sysdeps/alpha/tls.h (DB_THREAD_SELF): Pass bit size of thread
[thirdparty/glibc.git] / nptl_db / structs.def
CommitLineData
7f08f55a
RM
1/* List of types and symbols in libpthread examined by libthread_db.
2 Copyright (C) 2003 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
19
20#ifndef DB_STRUCT_ARRAY_FIELD
21# define DB_STRUCT_ARRAY_FIELD(type, field) DB_STRUCT_FIELD (type, field)
22# define DB_ARRAY_VARIABLE(name) DB_VARIABLE (name)
23# define STRUCTS_DEF_DEFAULTS 1
24#endif
25
26DB_STRUCT (pthread)
27DB_STRUCT_FIELD (pthread, list)
28DB_STRUCT_FIELD (pthread, report_events)
29DB_STRUCT_FIELD (pthread, tid)
30DB_STRUCT_FIELD (pthread, start_routine)
31DB_STRUCT_FIELD (pthread, cancelhandling)
32DB_STRUCT_FIELD (pthread, schedpolicy)
33DB_STRUCT_FIELD (pthread, schedparam_sched_priority)
34DB_STRUCT_FIELD (pthread, specific)
35DB_STRUCT_FIELD (pthread, eventbuf)
36DB_STRUCT_FIELD (pthread, eventbuf_eventmask)
37DB_STRUCT_ARRAY_FIELD (pthread, eventbuf_eventmask_event_bits)
38DB_STRUCT_FIELD (pthread, nextevent)
39
40DB_STRUCT (list_t)
41DB_STRUCT_FIELD (list_t, next)
42DB_STRUCT_FIELD (list_t, prev)
43
44DB_STRUCT (td_thr_events_t)
45DB_STRUCT_ARRAY_FIELD (td_thr_events_t, event_bits)
46
47DB_STRUCT (td_eventbuf_t)
48DB_STRUCT_FIELD (td_eventbuf_t, eventnum)
49DB_STRUCT_FIELD (td_eventbuf_t, eventdata)
50
51DB_SYMBOL (stack_used)
52DB_SYMBOL (__stack_user)
53DB_SYMBOL (nptl_version)
d43147cd
RM
54DB_FUNCTION (__nptl_create_event)
55DB_FUNCTION (__nptl_death_event)
7f08f55a
RM
56DB_SYMBOL (__nptl_threads_events)
57DB_VARIABLE (__nptl_nthreads)
58DB_VARIABLE (__nptl_last_event)
59
60DB_ARRAY_VARIABLE (__pthread_keys)
61DB_STRUCT (pthread_key_struct)
62DB_STRUCT_FIELD (pthread_key_struct, seq)
63DB_STRUCT_FIELD (pthread_key_struct, destr)
64
65DB_STRUCT (pthread_key_data)
66DB_STRUCT_FIELD (pthread_key_data, seq)
67DB_STRUCT_FIELD (pthread_key_data, data)
68DB_STRUCT (pthread_key_data_level2)
69DB_STRUCT_ARRAY_FIELD (pthread_key_data_level2, data)
70
71#if USE_TLS
72DB_STRUCT_FIELD (link_map, l_tls_modid)
73#endif
74
75#if !defined IS_IN_libpthread || USE_TLS
76DB_STRUCT_ARRAY_FIELD (dtv, dtv)
77#endif
78#if !defined IS_IN_libpthread || TLS_TCB_AT_TP
79DB_STRUCT_FIELD (pthread, dtvp)
80#endif
81
82#ifdef STRUCTS_DEF_DEFAULTS
83# undef DB_STRUCT_ARRAY_FIELD
84# undef DB_ARRAY_VARIABLE
85# undef STRUCTS_DEF_DEFAULTS
86#endif