]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/aarch64/nptl/bits/pthreadtypes.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / aarch64 / nptl / bits / pthreadtypes.h
1 /* Copyright (C) 2002-2016 Free Software Foundation, Inc.
2
3 This file is part of the GNU C Library.
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, see
17 <http://www.gnu.org/licenses/>. */
18
19 #ifndef _BITS_PTHREADTYPES_H
20 #define _BITS_PTHREADTYPES_H 1
21
22 #include <endian.h>
23
24 #define __SIZEOF_PTHREAD_ATTR_T 64
25 #define __SIZEOF_PTHREAD_MUTEX_T 48
26 #define __SIZEOF_PTHREAD_MUTEXATTR_T 8
27 #define __SIZEOF_PTHREAD_COND_T 48
28 #define __SIZEOF_PTHREAD_COND_COMPAT_T 48
29 #define __SIZEOF_PTHREAD_CONDATTR_T 8
30 #define __SIZEOF_PTHREAD_RWLOCK_T 56
31 #define __SIZEOF_PTHREAD_RWLOCKATTR_T 8
32 #define __SIZEOF_PTHREAD_BARRIER_T 32
33 #define __SIZEOF_PTHREAD_BARRIERATTR_T 8
34
35
36 /* Thread identifiers. The structure of the attribute type is not
37 exposed on purpose. */
38 typedef unsigned long int pthread_t;
39
40
41 union pthread_attr_t
42 {
43 char __size[__SIZEOF_PTHREAD_ATTR_T];
44 long int __align;
45 };
46 #ifndef __have_pthread_attr_t
47 typedef union pthread_attr_t pthread_attr_t;
48 # define __have_pthread_attr_t1
49 #endif
50
51 typedef struct __pthread_internal_list
52 {
53 struct __pthread_internal_list *__prev;
54 struct __pthread_internal_list *__next;
55 } __pthread_list_t;
56
57
58 /* Data structures for mutex handling. The structure of the attribute
59 type is not exposed on purpose. */
60 typedef union
61 {
62 struct __pthread_mutex_s
63 {
64 int __lock;
65 unsigned int __count;
66 int __owner;
67 unsigned int __nusers;
68 int __kind;
69 int __spins;
70 __pthread_list_t __list;
71 #define __PTHREAD_MUTEX_HAVE_PREV 1
72 } __data;
73 char __size[__SIZEOF_PTHREAD_MUTEX_T];
74 long int __align;
75 } pthread_mutex_t;
76
77 /* Mutex __spins initializer used by PTHREAD_MUTEX_INITIALIZER. */
78 #define __PTHREAD_SPINS 0
79
80 typedef union
81 {
82 char __size[__SIZEOF_PTHREAD_MUTEXATTR_T];
83 long int __align;
84 } pthread_mutexattr_t;
85
86
87 /* Data structure for conditional variable handling. The structure of
88 the attribute type is not exposed on purpose. */
89 typedef union
90 {
91 struct
92 {
93 int __lock;
94 unsigned int __futex;
95 __extension__ unsigned long long int __total_seq;
96 __extension__ unsigned long long int __wakeup_seq;
97 __extension__ unsigned long long int __woken_seq;
98 void *__mutex;
99 unsigned int __nwaiters;
100 unsigned int __broadcast_seq;
101 } __data;
102 char __size[__SIZEOF_PTHREAD_COND_T];
103 long int __align;
104 } pthread_cond_t;
105
106 typedef union
107 {
108 char __size[__SIZEOF_PTHREAD_CONDATTR_T];
109 int __align;
110 } pthread_condattr_t;
111
112
113 /* Keys for thread-specific data */
114 typedef unsigned int pthread_key_t;
115
116
117 /* Once-only execution */
118 typedef int pthread_once_t;
119
120
121 #if defined __USE_UNIX98 || defined __USE_XOPEN2K
122 /* Data structure for read-write lock variable handling. The
123 structure of the attribute type is not exposed on purpose. */
124 typedef union
125 {
126 struct
127 {
128 int __lock;
129 unsigned int __nr_readers;
130 unsigned int __readers_wakeup;
131 unsigned int __writer_wakeup;
132 unsigned int __nr_readers_queued;
133 unsigned int __nr_writers_queued;
134 int __writer;
135 int __shared;
136 unsigned long int __pad1;
137 unsigned long int __pad2;
138 unsigned int __flags;
139 } __data;
140 char __size[__SIZEOF_PTHREAD_RWLOCK_T];
141 long int __align;
142 } pthread_rwlock_t;
143
144 #define __PTHREAD_RWLOCK_ELISION_EXTRA 0
145
146 typedef union
147 {
148 char __size[__SIZEOF_PTHREAD_RWLOCKATTR_T];
149 long int __align;
150 } pthread_rwlockattr_t;
151 #endif
152
153
154 #ifdef __USE_XOPEN2K
155 /* POSIX spinlock data type. */
156 typedef volatile int pthread_spinlock_t;
157
158
159 /* POSIX barriers data type. The structure of the type is
160 deliberately not exposed. */
161 typedef union
162 {
163 char __size[__SIZEOF_PTHREAD_BARRIER_T];
164 long int __align;
165 } pthread_barrier_t;
166
167 typedef union
168 {
169 char __size[__SIZEOF_PTHREAD_BARRIERATTR_T];
170 int __align;
171 } pthread_barrierattr_t;
172 #endif
173
174 #endif /* bits/pthreadtypes.h */