OSDN Git Service

mkostemp: fix implementation
[uclinux-h8/uClibc.git] / libpthread / linuxthreads.old / sysdeps / pthread / bits / pthreadtypes.h
1 /* Linuxthreads - a simple clone()-based implementation of Posix        */
2 /* threads for Linux.                                                   */
3 /* Copyright (C) 1996 Xavier Leroy (Xavier.Leroy@inria.fr)              */
4 /*                                                                      */
5 /* This program is free software; you can redistribute it and/or        */
6 /* modify it under the terms of the GNU Library General Public License  */
7 /* as published by the Free Software Foundation; either version 2       */
8 /* of the License, or (at your option) any later version.               */
9 /*                                                                      */
10 /* This program 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        */
13 /* GNU Library General Public License for more details.                 */
14
15 #if !defined _BITS_TYPES_H && !defined _PTHREAD_H
16 # error "Never include <bits/pthreadtypes.h> directly; use <sys/types.h> instead."
17 #endif
18
19 #ifndef _BITS_PTHREADTYPES_H
20 #define _BITS_PTHREADTYPES_H    1
21
22 #define __need_size_t
23 #include <stddef.h>
24
25 #define __need_schedparam
26 #include <bits/sched.h>
27
28 /* Fast locks (not abstract because mutexes and conditions aren't abstract). */
29 struct _pthread_fastlock
30 {
31   long int __status;   /* "Free" or "taken" or head of waiting list */
32   int __spinlock;      /* Used by compare_and_swap emulation. Also,
33                           adaptive SMP lock stores spin count here. */
34 };
35
36 #ifndef _PTHREAD_DESCR_DEFINED
37 /* Thread descriptors */
38 typedef struct _pthread_descr_struct *_pthread_descr;
39 # define _PTHREAD_DESCR_DEFINED
40 #endif
41
42
43 /* Attributes for threads.  */
44 typedef struct __pthread_attr_s
45 {
46   int __detachstate;
47   int __schedpolicy;
48   struct __sched_param __schedparam;
49   int __inheritsched;
50   int __scope;
51   size_t __guardsize;
52   int __stackaddr_set;
53   void *__stackaddr;
54   size_t __stacksize;
55 } pthread_attr_t;
56
57
58 /* Conditions (not abstract because of PTHREAD_COND_INITIALIZER */
59 typedef struct
60 {
61   struct _pthread_fastlock __c_lock; /* Protect against concurrent access */
62   _pthread_descr __c_waiting;        /* Threads waiting on this condition */
63 } pthread_cond_t;
64
65
66 /* Attribute for conditionally variables.  */
67 typedef struct
68 {
69   int __dummy;
70 } pthread_condattr_t;
71
72 /* Keys for thread-specific data */
73 typedef unsigned int pthread_key_t;
74
75
76 /* Mutexes (not abstract because of PTHREAD_MUTEX_INITIALIZER).  */
77 /* (The layout is unnatural to maintain binary compatibility
78     with earlier releases of LinuxThreads.) */
79 typedef struct
80 {
81   int __m_reserved;               /* Reserved for future use */
82   int __m_count;                  /* Depth of recursive locking */
83   _pthread_descr __m_owner;       /* Owner thread (if recursive or errcheck) */
84   int __m_kind;                   /* Mutex kind: fast, recursive or errcheck */
85   struct _pthread_fastlock __m_lock; /* Underlying fast lock */
86 } pthread_mutex_t;
87
88
89 /* Attribute for mutex.  */
90 typedef struct
91 {
92   int __mutexkind;
93 } pthread_mutexattr_t;
94
95
96 /* Once-only execution */
97 typedef int pthread_once_t;
98
99
100 #if defined __USE_UNIX98 || defined __USE_XOPEN2K
101 /* Read-write locks.  */
102 typedef struct _pthread_rwlock_t
103 {
104   struct _pthread_fastlock __rw_lock; /* Lock to guarantee mutual exclusion */
105   int __rw_readers;                   /* Number of readers */
106   _pthread_descr __rw_writer;         /* Identity of writer, or NULL if none */
107   _pthread_descr __rw_read_waiting;   /* Threads waiting for reading */
108   _pthread_descr __rw_write_waiting;  /* Threads waiting for writing */
109   int __rw_kind;                      /* Reader/Writer preference selection */
110   int __rw_pshared;                   /* Shared between processes or not */
111 } pthread_rwlock_t;
112
113
114 /* Attribute for read-write locks.  */
115 typedef struct
116 {
117   int __lockkind;
118   int __pshared;
119 } pthread_rwlockattr_t;
120 #endif
121
122 #ifdef __USE_XOPEN2K
123 /* POSIX spinlock data type.  */
124 typedef volatile int pthread_spinlock_t;
125
126 /* POSIX barrier. */
127 typedef struct {
128   struct _pthread_fastlock __ba_lock; /* Lock to guarantee mutual exclusion */
129   int __ba_required;                  /* Threads needed for completion */
130   int __ba_present;                   /* Threads waiting */
131   _pthread_descr __ba_waiting;        /* Queue of waiting threads */
132 } pthread_barrier_t;
133
134 /* barrier attribute */
135 typedef struct {
136   int __pshared;
137 } pthread_barrierattr_t;
138
139 #endif
140
141
142 /* Thread identifiers */
143 typedef unsigned long int pthread_t;
144
145 #endif  /* bits/pthreadtypes.h */