1 /* Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
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.
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.
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
27 #include <sys/types.h>
28 #include <hp-timing.h>
30 #include <lowlevellock.h>
31 #include <pthreaddef.h>
32 #include <dl-sysdep.h>
33 #include "../nptl_db/thread_db.h"
35 #ifdef HAVE_FORCED_UNWIND
38 #define __need_res_state
42 # define TCB_ALIGNMENT sizeof (double)
46 /* We keep thread specific data in a special data structure, a two-level
47 array. The top-level array contains pointers to dynamically allocated
48 arrays of a certain number of data pointers. So we can implement a
49 sparse array. Each dynamic second-level array has
50 PTHREAD_KEY_2NDLEVEL_SIZE
51 entries. This value shouldn't be too large. */
52 #define PTHREAD_KEY_2NDLEVEL_SIZE 32
54 /* We need to address PTHREAD_KEYS_MAX key with PTHREAD_KEY_2NDLEVEL_SIZE
55 keys in each subarray. */
56 #define PTHREAD_KEY_1STLEVEL_SIZE \
57 ((PTHREAD_KEYS_MAX + PTHREAD_KEY_2NDLEVEL_SIZE - 1) \
58 / PTHREAD_KEY_2NDLEVEL_SIZE)
63 /* Internal version of the buffer to store cancellation handler
65 struct pthread_unwind_buf
75 /* This is the placeholder of the public version. */
80 /* Pointer to the previous cleanup buffer. */
81 struct pthread_unwind_buf
*prev
;
83 /* Backward compatibility: state of the old-style cleanup
84 handler at the time of the previous new-style cleanup handler
86 struct _pthread_cleanup_buffer
*cleanup
;
88 /* Cancellation type before the push call. */
95 /* Opcodes and data types for communication with the signal handler to
96 change user/group IDs. */
105 /* Thread descriptor data structure. */
111 /* This overlaps the TCB as used for TLS without threads (see tls.h). */
116 int multiple_threads
;
120 /* This extra padding has no special purpose, and this structure layout
121 is private and subject to change without affecting the official ABI.
122 We just have it here in case it might be convenient for some
123 implementation-specific instrumentation hack or suchlike. */
127 /* This descriptor's link on the `stack_used' or `__stack_user' list. */
130 /* Thread ID - which is also a 'is this thread descriptor (and
131 therefore stack) used' flag. */
134 /* Process ID - thread group ID in kernel speak. */
137 /* List of robust mutexes the thread is holding. */
138 #ifdef __PTHREAD_MUTEX_HAVE_PREV
139 __pthread_list_t robust_list
;
141 # define ENQUEUE_MUTEX(mutex) \
143 __pthread_list_t *next = THREAD_GETMEM (THREAD_SELF, robust_list.__next); \
144 next->__prev = &mutex->__data.__list; \
145 mutex->__data.__list.__next = next; \
146 mutex->__data.__list.__prev = &THREAD_SELF->robust_list; \
147 THREAD_SETMEM (THREAD_SELF, robust_list.__next, &mutex->__data.__list); \
149 # define DEQUEUE_MUTEX(mutex) \
151 mutex->__data.__list.__next->__prev = mutex->__data.__list.__prev; \
152 mutex->__data.__list.__prev->__next = mutex->__data.__list.__next; \
153 mutex->__data.__list.__prev = NULL; \
154 mutex->__data.__list.__next = NULL; \
157 __pthread_slist_t robust_list
;
159 # define ENQUEUE_MUTEX(mutex) \
161 mutex->__data.__list.__next \
162 = THREAD_GETMEM (THREAD_SELF, robust_list.__next); \
163 THREAD_SETMEM (THREAD_SELF, robust_list.__next, &mutex->__data.__list); \
165 # define DEQUEUE_MUTEX(mutex) \
167 __pthread_slist_t *runp = THREAD_GETMEM (THREAD_SELF, robust_list.__next);\
168 if (runp == &mutex->__data.__list) \
169 THREAD_SETMEM (THREAD_SELF, robust_list.__next, runp->__next); \
172 while (runp->__next != &mutex->__data.__list) \
173 runp = runp->__next; \
175 runp->__next = runp->__next->__next; \
176 mutex->__data.__list.__next = NULL; \
181 /* List of cleanup buffers. */
182 struct _pthread_cleanup_buffer
*cleanup
;
184 /* Unwind information. */
185 struct pthread_unwind_buf
*cleanup_jmp_buf
;
186 #define HAVE_CLEANUP_JMP_BUF
188 /* Flags determining processing of cancellation. */
190 /* Bit set if cancellation is disabled. */
191 #define CANCELSTATE_BIT 0
192 #define CANCELSTATE_BITMASK 0x01
193 /* Bit set if asynchronous cancellation mode is selected. */
194 #define CANCELTYPE_BIT 1
195 #define CANCELTYPE_BITMASK 0x02
196 /* Bit set if canceling has been initiated. */
197 #define CANCELING_BIT 2
198 #define CANCELING_BITMASK 0x04
199 /* Bit set if canceled. */
200 #define CANCELED_BIT 3
201 #define CANCELED_BITMASK 0x08
202 /* Bit set if thread is exiting. */
203 #define EXITING_BIT 4
204 #define EXITING_BITMASK 0x10
205 /* Bit set if thread terminated and TCB is freed. */
206 #define TERMINATED_BIT 5
207 #define TERMINATED_BITMASK 0x20
208 /* Bit set if thread is supposed to change XID. */
210 #define SETXID_BITMASK 0x40
211 /* Mask for the rest. Helps the compiler to optimize. */
212 #define CANCEL_RESTMASK 0xffffff80
214 #define CANCEL_ENABLED_AND_CANCELED(value) \
215 (((value) & (CANCELSTATE_BITMASK | CANCELED_BITMASK | EXITING_BITMASK \
216 | CANCEL_RESTMASK | TERMINATED_BITMASK)) == CANCELED_BITMASK)
217 #define CANCEL_ENABLED_AND_CANCELED_AND_ASYNCHRONOUS(value) \
218 (((value) & (CANCELSTATE_BITMASK | CANCELTYPE_BITMASK | CANCELED_BITMASK \
219 | EXITING_BITMASK | CANCEL_RESTMASK | TERMINATED_BITMASK)) \
220 == (CANCELTYPE_BITMASK | CANCELED_BITMASK))
222 /* We allocate one block of references here. This should be enough
223 to avoid allocating any memory dynamically for most applications. */
224 struct pthread_key_data
226 /* Sequence number. We use uintptr_t to not require padding on
227 32- and 64-bit machines. On 64-bit machines it helps to avoid
233 } specific_1stblock
[PTHREAD_KEY_2NDLEVEL_SIZE
];
235 /* Two-level array for the thread-specific data. */
236 struct pthread_key_data
*specific
[PTHREAD_KEY_1STLEVEL_SIZE
];
238 /* Flag which is set when specific data is set. */
241 /* True if events must be reported. */
244 /* True if the user provided the stack. */
247 /* True if thread must stop at startup time. */
250 /* Lock to synchronize access to the descriptor. */
253 /* Lock for synchronizing setxid calls. */
254 lll_lock_t setxid_futex
;
257 /* Offset of the CPU clock at start thread start time. */
258 hp_timing_t cpuclock_offset
;
261 /* If the thread waits to join another one the ID of the latter is
264 In case a thread is detached this field contains a pointer of the
265 TCB if the thread itself. This is something which cannot happen
266 in normal operation. */
267 struct pthread
*joinid
;
268 /* Check whether a thread is detached. */
269 #define IS_DETACHED(pd) ((pd)->joinid == (pd))
271 /* Flags. Including those copied from the thread attribute. */
274 /* The result of the thread function. */
277 /* Scheduling parameters for the new thread. */
278 struct sched_param schedparam
;
281 /* Start position of the code to be executed and the argument passed
283 void *(*start_routine
) (void *);
287 td_eventbuf_t eventbuf
;
288 /* Next descriptor with a pending event. */
289 struct pthread
*nextevent
;
291 #ifdef HAVE_FORCED_UNWIND
292 /* Machine-specific unwind info. */
293 struct _Unwind_Exception exc
;
296 /* If nonzero pointer to area allocated for the stack and its
299 size_t stackblock_size
;
300 /* Size of the included guard area. */
302 /* This is what the user specified and what we will report. */
303 size_t reported_guardsize
;
305 /* Resolver state. */
306 struct __res_state res
;
308 /* If you add fields after the res field above, please adjust
309 the following macro. */
310 #define PTHREAD_STRUCT_END_PADDING \
311 (sizeof (struct pthread) - offsetof (struct pthread, res) \
312 - sizeof (((struct pthread *) 0)->res))
314 } __attribute ((aligned (TCB_ALIGNMENT
)));