OSDN Git Service

test: Some more tests under conditionals
[uclinux-h8/uClibc.git] / libpthread / nptl_db / structs.def
1 /* List of types and symbols in libpthread examined by libthread_db.
2    Copyright (C) 2003, 2006 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, see
17    <http://www.gnu.org/licenses/>.  */
18
19 #ifndef DB_STRUCT_ARRAY_FIELD
20 # define DB_STRUCT_ARRAY_FIELD(type, field) DB_STRUCT_FIELD (type, field)
21 # define DB_ARRAY_VARIABLE(name) DB_VARIABLE (name)
22 # define STRUCTS_DEF_DEFAULTS 1
23 #endif
24
25 DB_STRUCT (pthread)
26 DB_STRUCT_FIELD (pthread, list)
27 DB_STRUCT_FIELD (pthread, report_events)
28 DB_STRUCT_FIELD (pthread, tid)
29 DB_STRUCT_FIELD (pthread, start_routine)
30 DB_STRUCT_FIELD (pthread, cancelhandling)
31 DB_STRUCT_FIELD (pthread, schedpolicy)
32 DB_STRUCT_FIELD (pthread, schedparam_sched_priority)
33 DB_STRUCT_FIELD (pthread, specific)
34 DB_STRUCT_FIELD (pthread, eventbuf)
35 DB_STRUCT_FIELD (pthread, eventbuf_eventmask)
36 DB_STRUCT_ARRAY_FIELD (pthread, eventbuf_eventmask_event_bits)
37 DB_STRUCT_FIELD (pthread, nextevent)
38
39 DB_STRUCT (list_t)
40 DB_STRUCT_FIELD (list_t, next)
41 DB_STRUCT_FIELD (list_t, prev)
42
43 DB_STRUCT (td_thr_events_t)
44 DB_STRUCT_ARRAY_FIELD (td_thr_events_t, event_bits)
45
46 DB_STRUCT (td_eventbuf_t)
47 DB_STRUCT_FIELD (td_eventbuf_t, eventnum)
48 DB_STRUCT_FIELD (td_eventbuf_t, eventdata)
49
50 DB_SYMBOL (stack_used)
51 DB_SYMBOL (__stack_user)
52 DB_SYMBOL (nptl_version)
53 DB_FUNCTION (__nptl_create_event)
54 DB_FUNCTION (__nptl_death_event)
55 DB_SYMBOL (__nptl_threads_events)
56 DB_VARIABLE (__nptl_nthreads)
57 DB_VARIABLE (__nptl_last_event)
58
59 DB_ARRAY_VARIABLE (__pthread_keys)
60 DB_STRUCT (pthread_key_struct)
61 DB_STRUCT_FIELD (pthread_key_struct, seq)
62 DB_STRUCT_FIELD (pthread_key_struct, destr)
63
64 DB_STRUCT (pthread_key_data)
65 DB_STRUCT_FIELD (pthread_key_data, seq)
66 DB_STRUCT_FIELD (pthread_key_data, data)
67 DB_STRUCT (pthread_key_data_level2)
68 DB_STRUCT_ARRAY_FIELD (pthread_key_data_level2, data)
69
70 #if USE_TLS
71 DB_STRUCT_FIELD (link_map, l_tls_modid)
72 #endif
73
74 #if !defined IS_IN_libpthread || USE_TLS
75 DB_STRUCT_ARRAY_FIELD (dtv, dtv)
76 # define pointer_val pointer.val /* Field of anonymous struct in dtv_t.  */
77 DB_STRUCT_FIELD (dtv_t, pointer_val)
78 #endif
79 #if !defined IS_IN_libpthread || (defined TLS_TCB_AT_TP && TLS_TCB_AT_TP)
80 DB_STRUCT_FIELD (pthread, dtvp)
81 #endif
82
83 #ifdef STRUCTS_DEF_DEFAULTS
84 # undef DB_STRUCT_ARRAY_FIELD
85 # undef DB_ARRAY_VARIABLE
86 # undef STRUCTS_DEF_DEFAULTS
87 #endif