(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / linuxthreads / sysdeps / sparc / tls.h
blob6b1966fe1cb96b362ac519d19ab875cb6230c025
1 /* Definitions for thread-local data handling. linuxthreads/sparc version.
2 Copyright (C) 2002, 2003 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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
18 02111-1307 USA. */
20 #ifndef _TLS_H
21 #define _TLS_H
23 #ifndef __ASSEMBLER__
25 # include <pt-machine.h>
26 # include <stddef.h>
28 /* Type for the dtv. */
29 typedef union dtv
31 size_t counter;
32 void *pointer;
33 } dtv_t;
35 typedef struct
37 void *tcb; /* Pointer to the TCB. Not necessary the
38 thread descriptor used by libpthread. */
39 dtv_t *dtv;
40 void *self; /* Pointer to the thread descriptor. */
41 int multiple_threads;
42 } tcbhead_t;
44 #else /* __ASSEMBLER__ */
45 # include <tcb-offsets.h>
46 #endif /* __ASSEMBLER__ */
48 #ifdef HAVE_TLS_SUPPORT
50 /* Signal that TLS support is available. */
51 # define USE_TLS 1
53 # ifndef __ASSEMBLER__
54 /* Get system call information. */
55 # include <sysdep.h>
57 /* Get the thread descriptor definition. */
58 # include <linuxthreads/descr.h>
60 /* This is the size of the initial TCB. */
61 # define TLS_INIT_TCB_SIZE sizeof (tcbhead_t)
63 /* Alignment requirements for the initial TCB. */
64 # define TLS_INIT_TCB_ALIGN __alignof__ (tcbhead_t)
66 /* This is the size of the TCB. */
67 # define TLS_TCB_SIZE sizeof (struct _pthread_descr_struct)
69 /* Alignment requirements for the TCB. */
70 # define TLS_TCB_ALIGN __alignof__ (struct _pthread_descr_struct)
72 /* The TCB can have any size and the memory following the address the
73 thread pointer points to is unspecified. Allocate the TCB there. */
74 # define TLS_TCB_AT_TP 1
76 /* Install the dtv pointer. The pointer passed is to the element with
77 index -1 which contain the length. */
78 # define INSTALL_DTV(descr, dtvp) \
79 ((tcbhead_t *) (descr))->dtv = (dtvp) + 1
81 /* Install new dtv for current thread. */
82 # define INSTALL_NEW_DTV(DTV) \
83 (((tcbhead_t *) __thread_self)->dtv = (DTV))
85 /* Return dtv of given thread descriptor. */
86 # define GET_DTV(descr) \
87 (((tcbhead_t *) (descr))->dtv)
89 /* Code to initially initialize the thread pointer. */
90 # define TLS_INIT_TP(descr, secondcall) \
91 (__thread_self = (__typeof (__thread_self)) (descr), NULL)
93 /* Return the address of the dtv for the current thread. */
94 # define THREAD_DTV() \
95 (((tcbhead_t *) __thread_self)->dtv)
97 # endif
99 #else
101 # define NONTLS_INIT_TP \
102 do { \
103 static const tcbhead_t nontls_init_tp \
104 = { .multiple_threads = 0 }; \
105 __thread_self = (__typeof (__thread_self)) &nontls_init_tp; \
106 } while (0)
108 #endif /* USE_TLS */
110 #endif /* tls.h */