(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / nptl / sysdeps / unix / sysv / linux / alpha / bits / pthreadtypes.h
blobd13d6e86a43e891f2f6697ceaaec5949276917cd
1 /* Machine-specific pthread type layouts. Alpha version.
2 Copyright (C) 2003, 2004 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 _BITS_PTHREADTYPES_H
21 #define _BITS_PTHREADTYPES_H 1
23 #define __SIZEOF_PTHREAD_ATTR_T 56
24 #define __SIZEOF_PTHREAD_MUTEX_T 40
25 #define __SIZEOF_PTHREAD_MUTEXATTR_T 4
26 #define __SIZEOF_PTHREAD_COND_T 48
27 #define __SIZEOF_PTHREAD_CONDATTR_T 4
28 #define __SIZEOF_PTHREAD_RWLOCK_T 56
29 #define __SIZEOF_PTHREAD_RWLOCKATTR_T 8
30 #define __SIZEOF_PTHREAD_BARRIER_T 32
31 #define __SIZEOF_PTHREAD_BARRIERATTR_T 4
34 /* Thread identifiers. The structure of the attribute type is
35 deliberately not exposed. */
36 typedef unsigned long int pthread_t;
39 typedef union
41 char __size[__SIZEOF_PTHREAD_ATTR_T];
42 long int __align;
43 } pthread_attr_t;
46 /* Data structures for mutex handling. The structure of the attribute
47 type is deliberately not exposed. */
48 typedef union
50 struct
52 int __lock;
53 unsigned int __count;
54 int __owner;
55 unsigned int __nusers;
56 /* KIND must stay at this position in the structure to maintain
57 binary compatibility. */
58 int __kind;
59 int __spins;
60 } __data;
61 char __size[__SIZEOF_PTHREAD_MUTEX_T];
62 long int __align;
63 } pthread_mutex_t;
65 typedef union
67 char __size[__SIZEOF_PTHREAD_MUTEXATTR_T];
68 int __align;
69 } pthread_mutexattr_t;
72 /* Data structure for conditional variable handling. The structure of
73 the attribute type is deliberately not exposed. */
74 typedef union
76 struct
78 int __lock;
79 unsigned int __futex;
80 __extension__ unsigned long long int __total_seq;
81 __extension__ unsigned long long int __wakeup_seq;
82 __extension__ unsigned long long int __woken_seq;
83 void *__mutex;
84 unsigned int __nwaiters;
85 unsigned int __broadcast_seq;
86 } __data;
87 char __size[__SIZEOF_PTHREAD_COND_T];
88 __extension__ long long int __align;
89 } pthread_cond_t;
91 typedef union
93 char __size[__SIZEOF_PTHREAD_CONDATTR_T];
94 int __align;
95 } pthread_condattr_t;
98 /* Keys for thread-specific data */
99 typedef unsigned int pthread_key_t;
102 /* Once-only execution */
103 typedef int pthread_once_t;
106 #if defined __USE_UNIX98 || defined __USE_XOPEN2K
107 /* Data structure for read-write lock variable handling. The
108 structure of the attribute type is deliberately not exposed. */
109 typedef union
111 struct
113 int __lock;
114 unsigned int __nr_readers;
115 unsigned int __readers_wakeup;
116 unsigned int __writer_wakeup;
117 unsigned int __nr_readers_queued;
118 unsigned int __nr_writers_queued;
119 int __writer;
121 unsigned int __reserved[6];
122 /* FLAGS must stay at this position in the structure to maintain
123 binary compatibility. */
124 unsigned int __flags;
125 } __data;
126 char __size[__SIZEOF_PTHREAD_RWLOCK_T];
127 long int __align;
128 } pthread_rwlock_t;
130 typedef union
132 char __size[__SIZEOF_PTHREAD_RWLOCKATTR_T];
133 long int __align;
134 } pthread_rwlockattr_t;
135 #endif
138 #ifdef __USE_XOPEN2K
139 /* POSIX spinlock data type. */
140 typedef volatile int pthread_spinlock_t;
142 /* POSIX barriers data type. The structure of the type is
143 deliberately not exposed. */
144 typedef union
146 char __size[__SIZEOF_PTHREAD_BARRIER_T];
147 long int __align;
148 } pthread_barrier_t;
150 typedef union
152 char __size[__SIZEOF_PTHREAD_BARRIERATTR_T];
153 int __align;
154 } pthread_barrierattr_t;
155 #endif
158 #endif /* bits/pthreadtypes.h */