* sysdeps/unix/sysv/linux/alpha/Versions: Put pciconfig_iobase in...
[glibc.git] / linuxthreads / internals.h
blob3fcec426309882f428bb9591f0e0e59929c45c61
1 /* Linuxthreads - a simple clone()-based implementation of Posix */
2 /* threads for Linux. */
3 /* Copyright (C) 1996 Xavier Leroy (Xavier.Leroy@inria.fr) */
4 /* */
5 /* This program is free software; you can redistribute it and/or */
6 /* modify it under the terms of the GNU Library General Public License */
7 /* as published by the Free Software Foundation; either version 2 */
8 /* of the License, or (at your option) any later version. */
9 /* */
10 /* This program 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 */
13 /* GNU Library General Public License for more details. */
15 #ifndef _INTERNALS_H
16 #define _INTERNALS_H 1
18 /* Internal data structures */
20 /* Includes */
22 #include <limits.h>
23 #include <setjmp.h>
24 #include <signal.h>
25 #include <unistd.h>
26 #include <sys/types.h>
27 #include <bits/libc-tsd.h> /* for _LIBC_TSD_KEY_N */
29 #include <resolv.h> /* for per-thread resolver context */
32 #include "pt-machine.h"
33 #include "semaphore.h"
34 #include "../linuxthreads_db/thread_dbP.h"
36 #ifndef THREAD_GETMEM
37 # define THREAD_GETMEM(descr, member) descr->member
38 #endif
39 #ifndef THREAD_GETMEM_NC
40 # define THREAD_GETMEM_NC(descr, member) descr->member
41 #endif
42 #ifndef THREAD_SETMEM
43 # define THREAD_SETMEM(descr, member, value) descr->member = (value)
44 #endif
45 #ifndef THREAD_SETMEM_NC
46 # define THREAD_SETMEM_NC(descr, member, value) descr->member = (value)
47 #endif
49 /* Arguments passed to thread creation routine */
51 struct pthread_start_args {
52 void * (*start_routine)(void *); /* function to run */
53 void * arg; /* its argument */
54 sigset_t mask; /* initial signal mask for thread */
55 int schedpolicy; /* initial scheduling policy (if any) */
56 struct sched_param schedparam; /* initial scheduling parameters (if any) */
60 /* We keep thread specific data in a special data structure, a two-level
61 array. The top-level array contains pointers to dynamically allocated
62 arrays of a certain number of data pointers. So we can implement a
63 sparse array. Each dynamic second-level array has
64 PTHREAD_KEY_2NDLEVEL_SIZE
65 entries. This value shouldn't be too large. */
66 #define PTHREAD_KEY_2NDLEVEL_SIZE 32
68 /* We need to address PTHREAD_KEYS_MAX key with PTHREAD_KEY_2NDLEVEL_SIZE
69 keys in each subarray. */
70 #define PTHREAD_KEY_1STLEVEL_SIZE \
71 ((PTHREAD_KEYS_MAX + PTHREAD_KEY_2NDLEVEL_SIZE - 1) \
72 / PTHREAD_KEY_2NDLEVEL_SIZE)
74 typedef void (*destr_function)(void *);
76 struct pthread_key_struct {
77 int in_use; /* already allocated? */
78 destr_function destr; /* destruction routine */
82 #define PTHREAD_START_ARGS_INITIALIZER(fct) \
83 { (void *(*) (void *)) fct, NULL, {{0, }}, 0, { 0 } }
85 /* The type of thread descriptors */
87 typedef struct _pthread_descr_struct * pthread_descr;
89 /* Callback interface for removing the thread from waiting on an
90 object if it is cancelled while waiting or about to wait.
91 This hold a pointer to the object, and a pointer to a function
92 which ``extricates'' the thread from its enqueued state.
93 The function takes two arguments: pointer to the wait object,
94 and a pointer to the thread. It returns 1 if an extrication
95 actually occured, and hence the thread must also be signalled.
96 It returns 0 if the thread had already been extricated. */
98 typedef struct _pthread_extricate_struct {
99 void *pu_object;
100 int (*pu_extricate_func)(void *, pthread_descr);
101 } pthread_extricate_if;
103 /* Atomic counter made possible by compare_and_swap */
105 struct pthread_atomic {
106 long p_count;
107 int p_spinlock;
110 /* Context info for read write locks. The pthread_rwlock_info structure
111 is information about a lock that has been read-locked by the thread
112 in whose list this structure appears. The pthread_rwlock_context
113 is embedded in the thread context and contains a pointer to the
114 head of the list of lock info structures, as well as a count of
115 read locks that are untracked, because no info structure could be
116 allocated for them. */
118 struct _pthread_rwlock_t;
120 typedef struct _pthread_rwlock_info {
121 struct _pthread_rwlock_info *pr_next;
122 struct _pthread_rwlock_t *pr_lock;
123 int pr_lock_count;
124 } pthread_readlock_info;
126 struct _pthread_descr_struct {
127 pthread_descr p_nextlive, p_prevlive;
128 /* Double chaining of active threads */
129 pthread_descr p_nextwaiting; /* Next element in the queue holding the thr */
130 pthread_descr p_nextlock; /* can be on a queue and waiting on a lock */
131 pthread_t p_tid; /* Thread identifier */
132 int p_pid; /* PID of Unix process */
133 int p_priority; /* Thread priority (== 0 if not realtime) */
134 struct _pthread_fastlock * p_lock; /* Spinlock for synchronized accesses */
135 int p_signal; /* last signal received */
136 sigjmp_buf * p_signal_jmp; /* where to siglongjmp on a signal or NULL */
137 sigjmp_buf * p_cancel_jmp; /* where to siglongjmp on a cancel or NULL */
138 char p_terminated; /* true if terminated e.g. by pthread_exit */
139 char p_detached; /* true if detached */
140 char p_exited; /* true if the assoc. process terminated */
141 void * p_retval; /* placeholder for return value */
142 int p_retcode; /* placeholder for return code */
143 pthread_descr p_joining; /* thread joining on that thread or NULL */
144 struct _pthread_cleanup_buffer * p_cleanup; /* cleanup functions */
145 char p_cancelstate; /* cancellation state */
146 char p_canceltype; /* cancellation type (deferred/async) */
147 char p_canceled; /* cancellation request pending */
148 int * p_errnop; /* pointer to used errno variable */
149 int p_errno; /* error returned by last system call */
150 int * p_h_errnop; /* pointer to used h_errno variable */
151 int p_h_errno; /* error returned by last netdb function */
152 char * p_in_sighandler; /* stack address of sighandler, or NULL */
153 char p_sigwaiting; /* true if a sigwait() is in progress */
154 struct pthread_start_args p_start_args; /* arguments for thread creation */
155 void ** p_specific[PTHREAD_KEY_1STLEVEL_SIZE]; /* thread-specific data */
156 void * p_libc_specific[_LIBC_TSD_KEY_N]; /* thread-specific data for libc */
157 int p_userstack; /* nonzero if the user provided the stack */
158 void *p_guardaddr; /* address of guard area or NULL */
159 size_t p_guardsize; /* size of guard area */
160 pthread_descr p_self; /* Pointer to this structure */
161 int p_nr; /* Index of descriptor in __pthread_handles */
162 int p_report_events; /* Nonzero if events must be reported. */
163 td_eventbuf_t p_eventbuf; /* Data for event. */
164 struct pthread_atomic p_resume_count; /* number of times restart() was
165 called on thread */
166 char p_woken_by_cancel; /* cancellation performed wakeup */
167 pthread_extricate_if *p_extricate; /* See above */
168 pthread_readlock_info *p_readlock_list; /* List of readlock info structs */
169 pthread_readlock_info *p_readlock_free; /* Free list of structs */
170 int p_untracked_readlock_count; /* Readlocks not tracked by list */
171 struct __res_state *p_resp; /* Pointer to resolver state */
172 struct __res_state p_res; /* per-thread resolver state */
173 /* New elements must be added at the end. */
174 } __attribute__ ((aligned(32))); /* We need to align the structure so that
175 doubles are aligned properly. This is 8
176 bytes on MIPS and 16 bytes on MIPS64.
177 32 bytes might give better cache
178 utilization. */
181 /* The type of thread handles. */
183 typedef struct pthread_handle_struct * pthread_handle;
185 struct pthread_handle_struct {
186 struct _pthread_fastlock h_lock; /* Fast lock for sychronized access */
187 pthread_descr h_descr; /* Thread descriptor or NULL if invalid */
188 char * h_bottom; /* Lowest address in the stack thread */
191 /* The type of messages sent to the thread manager thread */
193 struct pthread_request {
194 pthread_descr req_thread; /* Thread doing the request */
195 enum { /* Request kind */
196 REQ_CREATE, REQ_FREE, REQ_PROCESS_EXIT, REQ_MAIN_THREAD_EXIT,
197 REQ_POST, REQ_DEBUG
198 } req_kind;
199 union { /* Arguments for request */
200 struct { /* For REQ_CREATE: */
201 const pthread_attr_t * attr; /* thread attributes */
202 void * (*fn)(void *); /* start function */
203 void * arg; /* argument to start function */
204 sigset_t mask; /* signal mask */
205 } create;
206 struct { /* For REQ_FREE: */
207 pthread_t thread_id; /* identifier of thread to free */
208 } free;
209 struct { /* For REQ_PROCESS_EXIT: */
210 int code; /* exit status */
211 } exit;
212 void * post; /* For REQ_POST: the semaphore */
213 } req_args;
217 /* Signals used for suspend/restart and for cancellation notification. */
219 extern int __pthread_sig_restart;
220 extern int __pthread_sig_cancel;
222 /* Signal used for interfacing with gdb */
224 extern int __pthread_sig_debug;
226 /* Global array of thread handles, used for validating a thread id
227 and retrieving the corresponding thread descriptor. Also used for
228 mapping the available stack segments. */
230 extern struct pthread_handle_struct __pthread_handles[PTHREAD_THREADS_MAX];
232 /* Descriptor of the initial thread */
234 extern struct _pthread_descr_struct __pthread_initial_thread;
236 /* Descriptor of the manager thread */
238 extern struct _pthread_descr_struct __pthread_manager_thread;
240 /* Descriptor of the main thread */
242 extern pthread_descr __pthread_main_thread;
244 /* Limit between the stack of the initial thread (above) and the
245 stacks of other threads (below). Aligned on a STACK_SIZE boundary.
246 Initially 0, meaning that the current thread is (by definition)
247 the initial thread. */
249 extern char *__pthread_initial_thread_bos;
251 /* Indicate whether at least one thread has a user-defined stack (if 1),
252 or all threads have stacks supplied by LinuxThreads (if 0). */
254 extern int __pthread_nonstandard_stacks;
256 /* File descriptor for sending requests to the thread manager.
257 Initially -1, meaning that __pthread_initialize_manager must be called. */
259 extern int __pthread_manager_request;
261 /* Other end of the pipe for sending requests to the thread manager. */
263 extern int __pthread_manager_reader;
265 /* Limits of the thread manager stack. */
267 extern char *__pthread_manager_thread_bos;
268 extern char *__pthread_manager_thread_tos;
270 /* Pending request for a process-wide exit */
272 extern int __pthread_exit_requested, __pthread_exit_code;
274 /* Set to 1 by gdb if we're debugging */
276 extern volatile int __pthread_threads_debug;
278 /* Globally enabled events. */
279 extern volatile td_thr_events_t __pthread_threads_events;
281 /* Pointer to descriptor of thread with last event. */
282 extern volatile pthread_descr __pthread_last_event;
284 /* Return the handle corresponding to a thread id */
286 static inline pthread_handle thread_handle(pthread_t id)
288 return &__pthread_handles[id % PTHREAD_THREADS_MAX];
291 /* Validate a thread handle. Must have acquired h->h_spinlock before. */
293 static inline int invalid_handle(pthread_handle h, pthread_t id)
295 return h->h_descr == NULL || h->h_descr->p_tid != id;
298 /* Fill in defaults left unspecified by pt-machine.h. */
300 /* The page size we can get from the system. This should likely not be
301 changed by the machine file but, you never know. */
302 #ifndef PAGE_SIZE
303 #define PAGE_SIZE (sysconf (_SC_PAGE_SIZE))
304 #endif
306 /* The max size of the thread stack segments. If the default
307 THREAD_SELF implementation is used, this must be a power of two and
308 a multiple of PAGE_SIZE. */
309 #ifndef STACK_SIZE
310 #define STACK_SIZE (2 * 1024 * 1024)
311 #endif
313 /* The initial size of the thread stack. Must be a multiple of PAGE_SIZE. */
314 #ifndef INITIAL_STACK_SIZE
315 #define INITIAL_STACK_SIZE (4 * PAGE_SIZE)
316 #endif
318 /* Size of the thread manager stack. The "- 32" avoids wasting space
319 with some malloc() implementations. */
320 #ifndef THREAD_MANAGER_STACK_SIZE
321 #define THREAD_MANAGER_STACK_SIZE (2 * PAGE_SIZE - 32)
322 #endif
324 /* The base of the "array" of thread stacks. The array will grow down from
325 here. Defaults to the calculated bottom of the initial application
326 stack. */
327 #ifndef THREAD_STACK_START_ADDRESS
328 #define THREAD_STACK_START_ADDRESS __pthread_initial_thread_bos
329 #endif
331 /* Get some notion of the current stack. Need not be exactly the top
332 of the stack, just something somewhere in the current frame. */
333 #ifndef CURRENT_STACK_FRAME
334 #define CURRENT_STACK_FRAME ({ char __csf; &__csf; })
335 #endif
337 /* Recover thread descriptor for the current thread */
339 extern pthread_descr __pthread_find_self (void) __attribute__ ((const));
341 static inline pthread_descr thread_self (void) __attribute__ ((const));
342 static inline pthread_descr thread_self (void)
344 #ifdef THREAD_SELF
345 return THREAD_SELF;
346 #else
347 char *sp = CURRENT_STACK_FRAME;
348 if (sp >= __pthread_initial_thread_bos)
349 return &__pthread_initial_thread;
350 else if (sp >= __pthread_manager_thread_bos
351 && sp < __pthread_manager_thread_tos)
352 return &__pthread_manager_thread;
353 else if (__pthread_nonstandard_stacks)
354 return __pthread_find_self();
355 else
356 return (pthread_descr)(((unsigned long)sp | (STACK_SIZE-1))+1) - 1;
357 #endif
360 /* Max number of times we must spin on a spinlock calling sched_yield().
361 After MAX_SPIN_COUNT iterations, we put the calling thread to sleep. */
363 #ifndef MAX_SPIN_COUNT
364 #define MAX_SPIN_COUNT 50
365 #endif
367 /* Duration of sleep (in nanoseconds) when we can't acquire a spinlock
368 after MAX_SPIN_COUNT iterations of sched_yield().
369 With the 2.0 and 2.1 kernels, this MUST BE > 2ms.
370 (Otherwise the kernel does busy-waiting for realtime threads,
371 giving other threads no chance to run.) */
373 #ifndef SPIN_SLEEP_DURATION
374 #define SPIN_SLEEP_DURATION 2000001
375 #endif
377 /* Debugging */
379 #ifdef DEBUG
380 #include <assert.h>
381 #define ASSERT assert
382 #define MSG __pthread_message
383 #else
384 #define ASSERT(x)
385 #define MSG(msg,arg...)
386 #endif
388 /* Internal global functions */
390 void __pthread_destroy_specifics(void);
391 void __pthread_perform_cleanup(void);
392 int __pthread_initialize_manager(void);
393 void __pthread_message(char * fmt, ...);
394 int __pthread_manager(void *reqfd);
395 int __pthread_manager_event(void *reqfd);
396 void __pthread_manager_sighandler(int sig);
397 void __pthread_reset_main_thread(void);
398 void __fresetlockfiles(void);
399 void __pthread_manager_adjust_prio(int thread_prio);
400 void __pthread_set_own_extricate_if(pthread_descr self, pthread_extricate_if *peif);
402 extern int __pthread_attr_setguardsize (pthread_attr_t *__attr,
403 size_t __guardsize);
404 extern int __pthread_attr_getguardsize (const pthread_attr_t *__attr,
405 size_t *__guardsize);
406 extern int __pthread_attr_setstackaddr (pthread_attr_t *__attr,
407 void *__stackaddr);
408 extern int __pthread_attr_getstackaddr (const pthread_attr_t *__attr,
409 void **__stackaddr);
410 extern int __pthread_attr_setstacksize (pthread_attr_t *__attr,
411 size_t __stacksize);
412 extern int __pthread_attr_getstacksize (const pthread_attr_t *__attr,
413 size_t *__stacksize);
414 extern int __pthread_getconcurrency (void);
415 extern int __pthread_setconcurrency (int __level);
416 extern int __pthread_mutexattr_gettype (const pthread_mutexattr_t *__attr,
417 int *__kind);
418 extern void __pthread_kill_other_threads_np (void);
420 void __pthread_restart_old(pthread_descr th);
421 void __pthread_suspend_old(pthread_descr self);
423 void __pthread_restart_new(pthread_descr th);
424 void __pthread_suspend_new(pthread_descr self);
426 void __pthread_wait_for_restart_signal(pthread_descr self);
428 void __pthread_init_condvar(int rt_sig_available);
430 /* Global pointers to old or new suspend functions */
432 extern void (*__pthread_restart)(pthread_descr);
433 extern void (*__pthread_suspend)(pthread_descr);
435 /* Prototypes for the function without cancelation support when the
436 normal version has it. */
437 extern int __libc_close (int fd);
438 extern int __libc_nanosleep (const struct timespec *requested_time,
439 struct timespec *remaining);
440 extern pid_t __libc_waitpid (pid_t pid, int *stat_loc, int options);
442 /* Prototypes for some of the new semaphore functions. */
443 extern int __new_sem_post (sem_t * sem);
445 /* The functions called the signal events. */
446 extern void __linuxthreads_create_event (void);
447 extern void __linuxthreads_death_event (void);
448 extern void __linuxthreads_reap_event (void);
450 #endif /* internals.h */