[BZ #163]
[platform/upstream/glibc.git] / nptl / sysdeps / unix / sysv / linux / s390 / bits / pthreadtypes.h
1 /* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3    Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
4
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.
9
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.
14
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.  */
19
20 #ifndef _BITS_PTHREADTYPES_H
21 #define _BITS_PTHREADTYPES_H    1
22
23 #include <bits/wordsize.h>
24
25 #if __WORDSIZE == 64
26 # define __SIZEOF_PTHREAD_ATTR_T 56
27 # define __SIZEOF_PTHREAD_MUTEX_T 40
28 # define __SIZEOF_PTHREAD_MUTEXATTR_T 4
29 # define __SIZEOF_PTHREAD_COND_T 48
30 # define __SIZEOF_PTHREAD_CONDATTR_T 4
31 # define __SIZEOF_PTHREAD_RWLOCK_T 56
32 # define __SIZEOF_PTHREAD_RWLOCKATTR_T 8
33 # define __SIZEOF_PTHREAD_BARRIER_T 32
34 # define __SIZEOF_PTHREAD_BARRIERATTR_T 4
35 #else
36 # define __SIZEOF_PTHREAD_ATTR_T 36
37 # define __SIZEOF_PTHREAD_MUTEX_T 24
38 # define __SIZEOF_PTHREAD_MUTEXATTR_T 4
39 # define __SIZEOF_PTHREAD_COND_T 48
40 # define __SIZEOF_PTHREAD_CONDATTR_T 4
41 # define __SIZEOF_PTHREAD_RWLOCK_T 32
42 # define __SIZEOF_PTHREAD_RWLOCKATTR_T 8
43 # define __SIZEOF_PTHREAD_BARRIER_T 20
44 # define __SIZEOF_PTHREAD_BARRIERATTR_T 4
45 #endif
46
47
48 /* Thread identifiers.  The structure of the attribute type is not
49    exposed on purpose.  */
50 typedef unsigned long int pthread_t;
51
52
53 typedef union
54 {
55   char __size[__SIZEOF_PTHREAD_ATTR_T];
56   long int __align;
57 } pthread_attr_t;
58
59
60 /* Data structures for mutex handling.  The structure of the attribute
61    type is not exposed on purpose.  */
62 typedef union
63 {
64   struct
65   {
66     int __lock;
67     unsigned int __count;
68     int __owner;
69 #if __WORDSIZE == 64
70     unsigned int __nusers;
71 #endif
72     /* KIND must stay at this position in the structure to maintain
73        binary compatibility.  */
74     int __kind;
75 #if __WORDSIZE != 64
76     unsigned int __nusers;
77 #endif
78     int __spins;
79   } __data;
80   char __size[__SIZEOF_PTHREAD_MUTEX_T];
81   long int __align;
82 } pthread_mutex_t;
83
84 typedef union
85 {
86   char __size[__SIZEOF_PTHREAD_MUTEXATTR_T];
87   int __align;
88 } pthread_mutexattr_t;
89
90
91 /* Data structure for conditional variable handling.  The structure of
92    the attribute type is not exposed on purpose.  */
93 typedef union
94 {
95   struct
96   {
97     int __lock;
98     int __clock;
99     unsigned long long int __total_seq;
100     unsigned long long int __wakeup_seq;
101     unsigned long long int __woken_seq;
102     void *__mutex;
103     unsigned int __broadcast_seq;
104   } __data;
105   char __size[__SIZEOF_PTHREAD_COND_T];
106   long long int __align;
107 } pthread_cond_t;
108
109 typedef union
110 {
111   char __size[__SIZEOF_PTHREAD_CONDATTR_T];
112   int __align;
113 } pthread_condattr_t;
114
115
116 /* Keys for thread-specific data */
117 typedef unsigned int pthread_key_t;
118
119
120 /* Once-only execution */
121 typedef int pthread_once_t;
122
123
124 #ifdef __USE_UNIX98
125 /* Data structure for read-write lock variable handling.  The
126    structure of the attribute type is not exposed on purpose.  */
127 typedef union
128 {
129 # if __WORDSIZE == 64
130   struct
131   {
132     int __lock;
133     unsigned int __nr_readers;
134     unsigned int __readers_wakeup;
135     unsigned int __writer_wakeup;
136     unsigned int __nr_readers_queued;
137     unsigned int __nr_writers_queued;
138     int __writer;
139     int __pad1;
140     unsigned long int __pad2;
141     unsigned long int __pad3;
142     /* FLAGS must stay at this position in the structure to maintain
143        binary compatibility.  */
144     unsigned int __flags;
145   } __data;
146 # else
147   struct
148   {
149     int __lock;
150     unsigned int __nr_readers;
151     unsigned int __readers_wakeup;
152     unsigned int __writer_wakeup;
153     unsigned int __nr_readers_queued;
154     unsigned int __nr_writers_queued;
155     /* FLAGS must stay at this position in the structure to maintain
156        binary compatibility.  */
157     unsigned int __flags;
158     int __writer;
159   } __data;
160 # endif
161   char __size[__SIZEOF_PTHREAD_RWLOCK_T];
162   long int __align;
163 } pthread_rwlock_t;
164
165 typedef union
166 {
167   char __size[__SIZEOF_PTHREAD_RWLOCKATTR_T];
168   long int __align;
169 } pthread_rwlockattr_t;
170 #endif
171
172
173 #ifdef __USE_XOPEN2K
174 /* POSIX spinlock data type.  */
175 typedef volatile int pthread_spinlock_t;
176
177
178 /* POSIX barriers data type.  The structure of the type is
179    deliberately not exposed.  */
180 typedef union
181 {
182   char __size[__SIZEOF_PTHREAD_BARRIER_T];
183   long int __align;
184 } pthread_barrier_t;
185
186 typedef union
187 {
188   char __size[__SIZEOF_PTHREAD_BARRIERATTR_T];
189   int __align;
190 } pthread_barrierattr_t;
191 #endif
192
193
194 #endif  /* bits/pthreadtypes.h */