1 /* Copyright (C) 2002-2016 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
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, see
17 <http://www.gnu.org/licenses/>. */
19 #ifndef _INTERNALTYPES_H
20 #define _INTERNALTYPES_H 1
29 /* Scheduler parameters and priority. */
30 struct sched_param schedparam
;
32 /* Various flags like detachstate, scope, etc. */
34 /* Size of guard area. */
44 #define ATTR_FLAG_DETACHSTATE 0x0001
45 #define ATTR_FLAG_NOTINHERITSCHED 0x0002
46 #define ATTR_FLAG_SCOPEPROCESS 0x0004
47 #define ATTR_FLAG_STACKADDR 0x0008
48 #define ATTR_FLAG_OLDATTR 0x0010
49 #define ATTR_FLAG_SCHED_SET 0x0020
50 #define ATTR_FLAG_POLICY_SET 0x0040
53 /* Mutex attribute data structure. */
54 struct pthread_mutexattr
56 /* Identifier for the kind of mutex.
58 Bit 31 is set if the mutex is to be shared between processes.
60 Bit 0 to 30 contain one of the PTHREAD_MUTEX_ values to identify
61 the type of the mutex. */
66 /* Conditional variable attribute data structure. */
67 struct pthread_condattr
69 /* Combination of values:
71 Bit 0 : flag whether conditional variable will be sharable between
79 /* The __NWAITERS field is used as a counter and to house the number
80 of bits for other purposes. COND_CLOCK_BITS is the number
81 of bits needed to represent the ID of the clock. COND_NWAITERS_SHIFT
82 is the number of bits reserved for other purposes like the clock. */
83 #define COND_CLOCK_BITS 1
84 #define COND_NWAITERS_SHIFT 1
87 /* Read-write lock variable attribute data structure. */
88 struct pthread_rwlockattr
95 /* Barrier data structure. See pthread_barrier_wait for a description
96 of how these fields are used. */
97 struct pthread_barrier
100 unsigned int current_round
;
105 /* See pthread_barrier_wait for a description. */
106 #define BARRIER_IN_THRESHOLD (UINT_MAX/2)
109 /* Barrier variable attribute data structure. */
110 struct pthread_barrierattr
116 /* Thread-local data handling. */
117 struct pthread_key_struct
119 /* Sequence numbers. Even numbers indicated vacant entries. Note
120 that zero is even. We use uintptr_t to not require padding on
121 32- and 64-bit machines. On 64-bit machines it helps to avoid
125 /* Destructor for the data. */
126 void (*destr
) (void *);
129 /* Check whether an entry is unused. */
130 #define KEY_UNUSED(p) (((p) & 1) == 0)
131 /* Check whether a key is usable. We cannot reuse an allocated key if
132 the sequence counter would overflow after the next destroy call.
133 This would mean that we potentially free memory for a key with the
134 same sequence. This is *very* unlikely to happen, A program would
135 have to create and destroy a key 2^31 times (on 32-bit platforms,
136 on 64-bit platforms that would be 2^63). If it should happen we
137 simply don't use this specific key anymore. */
138 #define KEY_USABLE(p) (((uintptr_t) (p)) < ((uintptr_t) ((p) + 2)))
141 /* Handling of read-write lock data. */
142 // XXX For now there is only one flag. Maybe more in future.
143 #define RWLOCK_RECURSIVE(rwlock) ((rwlock)->__data.__flags != 0)
146 /* Semaphore variable structure. */
149 #if __HAVE_64B_ATOMICS
150 /* The data field holds both value (in the least-significant 32 bytes) and
152 # if __BYTE_ORDER == __LITTLE_ENDIAN
153 # define SEM_VALUE_OFFSET 0
154 # elif __BYTE_ORDER == __BIG_ENDIAN
155 # define SEM_VALUE_OFFSET 1
157 # error Unsupported byte order.
159 # define SEM_NWAITERS_SHIFT 32
160 # define SEM_VALUE_MASK (~(unsigned int)0)
165 # define SEM_VALUE_SHIFT 1
166 # define SEM_NWAITERS_MASK ((unsigned int)1)
170 unsigned int nwaiters
;
180 /* Compatibility type for old conditional variable interfaces. */
183 pthread_cond_t
*cond
;
184 } pthread_cond_2_0_t
;
186 #endif /* internaltypes.h */