[BZ #163]
[platform/upstream/glibc.git] / nptl / sysdeps / unix / sysv / linux / powerpc / bits / pthreadtypes.h
1 /* Machine-specific pthread type layouts.  PowerPC version.
2    Copyright (C) 2003, 2004 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4    Contributed by Paul Mackerras <paulus@au.ibm.com>, 2003.
5
6    The GNU C Library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
10
11    The GNU C Library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
15
16    You should have received a copy of the GNU Lesser General Public
17    License along with the GNU C Library; if not, write to the Free
18    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19    02111-1307 USA.  */
20
21 #ifndef _BITS_PTHREADTYPES_H
22 #define _BITS_PTHREADTYPES_H    1
23
24 #include <bits/wordsize.h>
25
26 #if __WORDSIZE == 64
27 # define __SIZEOF_PTHREAD_ATTR_T 56
28 # define __SIZEOF_PTHREAD_MUTEX_T 40
29 # define __SIZEOF_PTHREAD_MUTEXATTR_T 4
30 # define __SIZEOF_PTHREAD_COND_T 48
31 # define __SIZEOF_PTHREAD_CONDATTR_T 4
32 # define __SIZEOF_PTHREAD_RWLOCK_T 56
33 # define __SIZEOF_PTHREAD_RWLOCKATTR_T 8
34 # define __SIZEOF_PTHREAD_BARRIER_T 32
35 # define __SIZEOF_PTHREAD_BARRIERATTR_T 4
36 #else
37 # define __SIZEOF_PTHREAD_ATTR_T 36
38 # define __SIZEOF_PTHREAD_MUTEX_T 24
39 # define __SIZEOF_PTHREAD_MUTEXATTR_T 4
40 # define __SIZEOF_PTHREAD_COND_T 48
41 # define __SIZEOF_PTHREAD_CONDATTR_T 4
42 # define __SIZEOF_PTHREAD_RWLOCK_T 32
43 # define __SIZEOF_PTHREAD_RWLOCKATTR_T 8
44 # define __SIZEOF_PTHREAD_BARRIER_T 20
45 # define __SIZEOF_PTHREAD_BARRIERATTR_T 4
46 #endif
47
48
49 /* Thread identifiers.  The structure of the attribute type is
50    deliberately not exposed.  */
51 typedef unsigned long int pthread_t;
52
53
54 typedef union
55 {
56   char __size[__SIZEOF_PTHREAD_ATTR_T];
57   long int __align;
58 } pthread_attr_t;
59
60
61 /* Data structures for mutex handling.  The structure of the attribute
62    type is deliberately not exposed.  */
63 typedef union
64 {
65   struct
66   {
67     int __lock;
68     unsigned int __count;
69     int __owner;
70 #if __WORDSIZE == 64
71     unsigned int __nusers;
72 #endif
73     /* KIND must stay at this position in the structure to maintain
74        binary compatibility.  */
75     int __kind;
76 #if __WORDSIZE != 64
77     unsigned int __nusers;
78 #endif
79     int __spins;
80   } __data;
81   char __size[__SIZEOF_PTHREAD_MUTEX_T];
82   long int __align;
83 } pthread_mutex_t;
84
85 typedef union
86 {
87   char __size[__SIZEOF_PTHREAD_MUTEXATTR_T];
88   int __align;
89 } pthread_mutexattr_t;
90
91
92 /* Data structure for conditional variable handling.  The structure of
93    the attribute type is deliberately not exposed.  */
94 typedef union
95 {
96   struct
97   {
98     int __lock;
99     int __clock;
100     unsigned long long int __total_seq;
101     unsigned long long int __wakeup_seq;
102     unsigned long long int __woken_seq;
103     void *__mutex;
104     unsigned int __broadcast_seq;
105   } __data;
106   char __size[__SIZEOF_PTHREAD_COND_T];
107   long long int __align;
108 } pthread_cond_t;
109
110 typedef union
111 {
112   char __size[__SIZEOF_PTHREAD_CONDATTR_T];
113   int __align;
114 } pthread_condattr_t;
115
116
117 /* Keys for thread-specific data */
118 typedef unsigned int pthread_key_t;
119
120
121 /* Once-only execution */
122 typedef int pthread_once_t;
123
124
125 #ifdef __USE_UNIX98
126 /* Data structure for read-write lock variable handling.  The
127    structure of the attribute type is deliberately not exposed.  */
128 typedef union
129 {
130 # if __WORDSIZE == 64
131   struct
132   {
133     int __lock;
134     unsigned int __nr_readers;
135     unsigned int __readers_wakeup;
136     unsigned int __writer_wakeup;
137     unsigned int __nr_readers_queued;
138     unsigned int __nr_writers_queued;
139     int __writer;
140     int __pad1;
141     unsigned long int __pad2;
142     unsigned long int __pad3;
143     /* FLAGS must stay at this position in the structure to maintain
144        binary compatibility.  */
145     unsigned int __flags;
146   } __data;
147 # else
148   struct
149   {
150     int __lock;
151     unsigned int __nr_readers;
152     unsigned int __readers_wakeup;
153     unsigned int __writer_wakeup;
154     unsigned int __nr_readers_queued;
155     unsigned int __nr_writers_queued;
156     /* FLAGS must stay at this position in the structure to maintain
157        binary compatibility.  */
158     unsigned int __flags;
159     int __writer;
160   } __data;
161 # endif
162   char __size[__SIZEOF_PTHREAD_RWLOCK_T];
163   long int __align;
164 } pthread_rwlock_t;
165
166 typedef union
167 {
168   char __size[__SIZEOF_PTHREAD_RWLOCKATTR_T];
169   long int __align;
170 } pthread_rwlockattr_t;
171 #endif
172
173
174 #ifdef __USE_XOPEN2K
175 /* POSIX spinlock data type.  */
176 typedef volatile int pthread_spinlock_t;
177
178
179 /* POSIX barriers data type.  The structure of the type is
180    deliberately not exposed.  */
181 typedef union
182 {
183   char __size[__SIZEOF_PTHREAD_BARRIER_T];
184   long int __align;
185 } pthread_barrier_t;
186
187 typedef union
188 {
189   char __size[__SIZEOF_PTHREAD_BARRIERATTR_T];
190   int __align;
191 } pthread_barrierattr_t;
192 #endif
193
194
195 #endif  /* bits/pthreadtypes.h */