]> git.sur5r.net Git - openldap/blob - include/lthread.h
4a3b0a8072c8e942f5bfd9525006a4d73e10cef1
[openldap] / include / lthread.h
1 /* lthread.h - ldap threads header file */
2
3 #ifndef _LTHREAD_H
4 #define _LTHREAD_H
5
6 #if defined ( THREAD_NEXT_CTHREADS )
7
8 #define _THREAD
9
10 #include <mach/cthreads.h>
11
12 typedef cthread_fn_t    VFP;
13 typedef int             pthread_attr_t;
14 typedef cthread_t       pthread_t;
15
16 /* default attr states */
17 #define pthread_mutexattr_default       NULL
18 #define pthread_condattr_default        NULL
19
20 /* thread state - joinable or not */
21 #define PTHREAD_CREATE_JOINABLE 0
22 #define PTHREAD_CREATE_DETACHED 1
23 /* thread scope - who is in scheduling pool */
24 #define PTHREAD_SCOPE_PROCESS   0
25 #define PTHREAD_SCOPE_SYSTEM    1
26
27 /* mutex attributes and mutex type */
28 typedef int     pthread_mutexattr_t;
29 typedef struct mutex pthread_mutex_t;
30
31 /* mutex and condition variable scope - process or system */
32 #define PTHREAD_SHARE_PRIVATE   0
33 #define PTHREAD_SHARE_PROCESS   1
34
35 /* condition variable attributes and condition variable type */
36 typedef int     pthread_condattr_t;
37 typedef struct condition pthread_cond_t;
38
39 #elif defined( THREAD_SUNOS4_LWP )
40 /***********************************
41  *                                 *
42  * thread definitions for sunos4   *
43  *                                 *
44  ***********************************/
45
46 #define _THREAD
47
48 #include <lwp/lwp.h>
49 #include <lwp/stackdep.h>
50
51 typedef void    *(*VFP)();
52
53 /* thread attributes and thread type */
54 typedef int             pthread_attr_t;
55 typedef thread_t        pthread_t;
56
57 /* default attr states */
58 #define pthread_mutexattr_default       NULL
59 #define pthread_condattr_default        NULL
60
61 /* thread state - joinable or not */
62 #define PTHREAD_CREATE_JOINABLE 0
63 #define PTHREAD_CREATE_DETACHED 1
64 /* thread scope - who is in scheduling pool */
65 #define PTHREAD_SCOPE_PROCESS   0
66 #define PTHREAD_SCOPE_SYSTEM    1
67
68 /* mutex attributes and mutex type */
69 typedef int     pthread_mutexattr_t;
70 typedef mon_t   pthread_mutex_t;
71
72 /* mutex and condition variable scope - process or system */
73 #define PTHREAD_SHARE_PRIVATE   0
74 #define PTHREAD_SHARE_PROCESS   1
75
76 /* condition variable attributes and condition variable type */
77 typedef int     pthread_condattr_t;
78 typedef struct lwpcv {
79         int             lcv_created;
80         cv_t            lcv_cv;
81 } pthread_cond_t;
82
83 #else /* end sunos4 */
84
85 #if defined( THREAD_SUNOS5_LWP )
86 /***********************************
87  *                                 *
88  * thread definitions for sunos5   *
89  *                                 *
90  ***********************************/
91
92 #define _THREAD
93
94 #include <thread.h>
95 #include <synch.h>
96
97 typedef void    *(*VFP)();
98
99 /* sunos5 threads are preemptive */
100 #define PTHREAD_PREEMPTIVE      1
101
102 /* thread attributes and thread type */
103 typedef int             pthread_attr_t;
104 typedef thread_t        pthread_t;
105
106 /* default attr states */
107 #define pthread_mutexattr_default       NULL
108 #define pthread_condattr_default        NULL
109
110 /* thread state - joinable or not */
111 #define PTHREAD_CREATE_JOINABLE 0
112 #define PTHREAD_CREATE_DETACHED THR_DETACHED
113 /* thread scope - who is in scheduling pool */
114 #define PTHREAD_SCOPE_PROCESS   0
115 #define PTHREAD_SCOPE_SYSTEM    THR_BOUND
116
117 /* mutex attributes and mutex type */
118 typedef int     pthread_mutexattr_t;
119 typedef mutex_t pthread_mutex_t;
120
121 /* mutex and condition variable scope - process or system */
122 #define PTHREAD_SHARE_PRIVATE   USYNC_THREAD
123 #define PTHREAD_SHARE_PROCESS   USYNC_PROCESS
124
125 /* condition variable attributes and condition variable type */
126 typedef int     pthread_condattr_t;
127 typedef cond_t  pthread_cond_t;
128
129 #else /* end sunos5 */
130
131 #if defined( THREAD_MIT_PTHREADS )
132 /***********************************
133  *                                 *
134  * definitions for mit pthreads    *
135  *                                 *
136  ***********************************/
137
138 #define _THREAD
139
140 #include <pthread.h>
141
142 #else /* end mit pthreads */
143
144 #if defined( THREAD_DCE_PTHREADS )
145 /***********************************
146  *                                 *
147  * definitions for mit pthreads    *
148  *                                 *
149  ***********************************/
150
151 #define _THREAD
152
153 #include <pthread.h>
154
155 /* dce threads are preemptive */
156 #define PTHREAD_PREEMPTIVE      1
157
158 #define pthread_attr_init( a )          pthread_attr_create( a )
159 #define pthread_attr_destroy( a )       pthread_attr_delete( a )
160 #define pthread_attr_setdetachstate( a, b ) \
161                                         pthread_attr_setdetach_np( a, b )
162
163 #endif /* dce pthreads */
164 #endif /* mit pthreads */
165 #endif /* sunos5 */
166 #endif /* sunos4 */
167
168 #ifndef _THREAD
169
170 /***********************************
171  *                                 *
172  * thread definitions for no       *
173  * underlying library support      *
174  *                                 *
175  ***********************************/
176
177 typedef void    *(*VFP)();
178
179 /* thread attributes and thread type */
180 typedef int     pthread_attr_t;
181 typedef int     pthread_t;
182
183 /* default attr states */
184 #define pthread_mutexattr_default       NULL
185 #define pthread_condattr_default        NULL
186
187 /* thread state - joinable or not */
188 #define PTHREAD_CREATE_JOINABLE 0
189 #define PTHREAD_CREATE_DETACHED 0
190 /* thread scope - who is in scheduling pool */
191 #define PTHREAD_SCOPE_PROCESS   0
192 #define PTHREAD_SCOPE_SYSTEM    0
193
194 /* mutex attributes and mutex type */
195 typedef int     pthread_mutexattr_t;
196 typedef int     pthread_mutex_t;
197
198 /* mutex and condition variable scope - process or system */
199 #define PTHREAD_SHARE_PRIVATE   0
200 #define PTHREAD_SHARE_PROCESS   0
201
202 /* condition variable attributes and condition variable type */
203 typedef int     pthread_condattr_t;
204 typedef int     pthread_cond_t;
205
206 #endif /* no threads support */
207 #endif /* _LTHREAD_H */