3 * Copyright (c) 1997-2002, Larry Wall
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
10 #if defined(USE_ITHREADS)
17 # include <win32thread.h>
20 # include <nw5thread.h>
22 # ifdef OLD_PTHREADS_API /* Here be dragons. */
25 if (pthread_detach(&(t)->self)) { \
26 MUTEX_UNLOCK(&(t)->mutex); \
27 Perl_croak_nocontext("panic: DETACH"); \
31 # define PERL_GET_CONTEXT Perl_get_context()
32 # define PERL_SET_CONTEXT(t) Perl_set_context((void*)t)
34 # define PTHREAD_GETSPECIFIC_INT
36 # define pthread_addr_t any_t
37 # define NEED_PTHREAD_INIT
38 # define PTHREAD_CREATE_JOINABLE (1)
41 # define pthread_addr_t void *
44 # define pthread_attr_init(a) pthread_attr_create(a)
45 # define PTHREAD_ATTR_SETDETACHSTATE(a,s) pthread_setdetach_np(a,s)
46 # define PTHREAD_CREATE(t,a,s,d) pthread_create(t,a,s,d)
47 # define pthread_key_create(k,d) pthread_keycreate(k,(pthread_destructor_t)(d))
48 # define pthread_mutexattr_init(a) pthread_mutexattr_create(a)
49 # define pthread_mutexattr_settype(a,t) pthread_mutexattr_setkind_np(a,t)
51 # if defined(__hpux) && defined(__ux_version) && __ux_version <= 1020
52 # define pthread_attr_init(a) pthread_attr_create(a)
53 /* XXX pthread_setdetach_np() missing in DCE threads on HP-UX 10.20 */
54 # define PTHREAD_ATTR_SETDETACHSTATE(a,s) (0)
55 # define PTHREAD_CREATE(t,a,s,d) pthread_create(t,a,s,d)
56 # define pthread_key_create(k,d) pthread_keycreate(k,(pthread_destructor_t)(d))
57 # define pthread_mutexattr_init(a) pthread_mutexattr_create(a)
58 # define pthread_mutexattr_settype(a,t) pthread_mutexattr_setkind_np(a,t)
60 # if defined(DJGPP) || defined(__OPEN_VM)
61 # define PTHREAD_ATTR_SETDETACHSTATE(a,s) pthread_attr_setdetachstate(a,&(s))
62 # define YIELD pthread_yield(NULL)
65 # if !defined(__hpux) || !defined(__ux_version) || __ux_version > 1020
66 # define pthread_mutexattr_default NULL
67 # define pthread_condattr_default NULL
72 #ifndef PTHREAD_CREATE
73 /* You are not supposed to pass NULL as the 2nd arg of PTHREAD_CREATE(). */
74 # define PTHREAD_CREATE(t,a,s,d) pthread_create(t,&(a),s,d)
77 #ifndef PTHREAD_ATTR_SETDETACHSTATE
78 # define PTHREAD_ATTR_SETDETACHSTATE(a,s) pthread_attr_setdetachstate(a,s)
81 #ifndef PTHREAD_CREATE_JOINABLE
82 # ifdef OLD_PTHREAD_CREATE_JOINABLE
83 # define PTHREAD_CREATE_JOINABLE OLD_PTHREAD_CREATE_JOINABLE
85 # define PTHREAD_CREATE_JOINABLE 0 /* Panic? No, guess. */
90 # define THREAD_CREATE_NEEDS_STACK (32*1024)
93 #ifdef I_MACH_CTHREADS
95 /* cthreads interface */
97 /* #include <mach/cthreads.h> is in perl.h #ifdef I_MACH_CTHREADS */
99 #define MUTEX_INIT(m) \
101 *m = mutex_alloc(); \
105 Perl_croak_nocontext("panic: MUTEX_INIT"); \
109 #define MUTEX_LOCK(m) mutex_lock(*m)
110 #define MUTEX_UNLOCK(m) mutex_unlock(*m)
111 #define MUTEX_DESTROY(m) \
117 #define COND_INIT(c) \
119 *c = condition_alloc(); \
121 condition_init(*c); \
124 Perl_croak_nocontext("panic: COND_INIT"); \
128 #define COND_SIGNAL(c) condition_signal(*c)
129 #define COND_BROADCAST(c) condition_broadcast(*c)
130 #define COND_WAIT(c, m) condition_wait(*c, *m)
131 #define COND_DESTROY(c) \
133 condition_free(*c); \
137 #define THREAD_CREATE(thr, f) (thr->self = cthread_fork(f, thr), 0)
138 #define THREAD_POST_CREATE(thr)
140 #define THREAD_RET_TYPE any_t
141 #define THREAD_RET_CAST(x) ((any_t) x)
143 #define DETACH(t) cthread_detach(t->self)
144 #define JOIN(t, avp) (*(avp) = (AV *)cthread_join(t->self))
146 #define PERL_SET_CONTEXT(t) cthread_set_data(cthread_self(), t)
147 #define PERL_GET_CONTEXT cthread_data(cthread_self())
149 #define INIT_THREADS cthread_init()
150 #define YIELD cthread_yield()
151 #define ALLOC_THREAD_KEY NOOP
152 #define FREE_THREAD_KEY NOOP
153 #define SET_THREAD_SELF(thr) (thr->self = cthread_self())
155 #endif /* I_MACH_CTHREADS */
159 # define YIELD SCHED_YIELD
161 # ifdef HAS_SCHED_YIELD
162 # define YIELD sched_yield()
164 # ifdef HAS_PTHREAD_YIELD
165 /* pthread_yield(NULL) platforms are expected
166 * to have #defined YIELD for themselves. */
167 # define YIELD pthread_yield()
174 # define MUTEX_INIT_NEEDS_MUTEX_ZEROED
179 # ifdef MUTEX_INIT_NEEDS_MUTEX_ZEROED
180 /* Temporary workaround, true bug is deeper. --jhi 1999-02-25 */
181 # define MUTEX_INIT(m) \
183 Zero((m), 1, perl_mutex); \
184 if (pthread_mutex_init((m), pthread_mutexattr_default)) \
185 Perl_croak_nocontext("panic: MUTEX_INIT"); \
188 # define MUTEX_INIT(m) \
190 if (pthread_mutex_init((m), pthread_mutexattr_default)) \
191 Perl_croak_nocontext("panic: MUTEX_INIT"); \
195 # define MUTEX_LOCK(m) \
197 if (pthread_mutex_lock((m))) \
198 Perl_croak_nocontext("panic: MUTEX_LOCK"); \
201 # define MUTEX_UNLOCK(m) \
203 if (pthread_mutex_unlock((m))) \
204 Perl_croak_nocontext("panic: MUTEX_UNLOCK"); \
207 # define MUTEX_DESTROY(m) \
209 if (pthread_mutex_destroy((m))) \
210 Perl_croak_nocontext("panic: MUTEX_DESTROY"); \
212 #endif /* MUTEX_INIT */
215 # define COND_INIT(c) \
217 if (pthread_cond_init((c), pthread_condattr_default)) \
218 Perl_croak_nocontext("panic: COND_INIT"); \
221 # define COND_SIGNAL(c) \
223 if (pthread_cond_signal((c))) \
224 Perl_croak_nocontext("panic: COND_SIGNAL"); \
227 # define COND_BROADCAST(c) \
229 if (pthread_cond_broadcast((c))) \
230 Perl_croak_nocontext("panic: COND_BROADCAST"); \
233 # define COND_WAIT(c, m) \
235 if (pthread_cond_wait((c), (m))) \
236 Perl_croak_nocontext("panic: COND_WAIT"); \
239 # define COND_DESTROY(c) \
241 if (pthread_cond_destroy((c))) \
242 Perl_croak_nocontext("panic: COND_DESTROY"); \
244 #endif /* COND_INIT */
246 /* DETACH(t) must only be called while holding t->mutex */
250 if (pthread_detach((t)->self)) { \
251 MUTEX_UNLOCK(&(t)->mutex); \
252 Perl_croak_nocontext("panic: DETACH"); \
258 # define JOIN(t, avp) \
260 if (pthread_join((t)->self, (void**)(avp))) \
261 Perl_croak_nocontext("panic: pthread_join"); \
265 /* Use an unchecked fetch of thread-specific data instead of a checked one.
266 * It would fail if the key were bogus, but if the key were bogus then
267 * Really Bad Things would be happening anyway. --dan */
268 #if (defined(__ALPHA) && (__VMS_VER >= 70000000)) || \
269 (defined(__alpha) && defined(__osf__) && !defined(__GNUC__)) /* Available only on >= 4.0 */
270 # define HAS_PTHREAD_UNCHECKED_GETSPECIFIC_NP /* Configure test needed */
273 #ifdef HAS_PTHREAD_UNCHECKED_GETSPECIFIC_NP
274 # define PTHREAD_GETSPECIFIC(key) pthread_unchecked_getspecific_np(key)
276 # define PTHREAD_GETSPECIFIC(key) pthread_getspecific(key)
279 #ifndef PERL_GET_CONTEXT
280 # define PERL_GET_CONTEXT PTHREAD_GETSPECIFIC(PL_thr_key)
283 #ifndef PERL_SET_CONTEXT
284 # define PERL_SET_CONTEXT(t) \
286 if (pthread_setspecific(PL_thr_key, (void *)(t))) \
287 Perl_croak_nocontext("panic: pthread_setspecific"); \
289 #endif /* PERL_SET_CONTEXT */
292 # ifdef NEED_PTHREAD_INIT
293 # define INIT_THREADS pthread_init()
297 #ifndef ALLOC_THREAD_KEY
298 # define ALLOC_THREAD_KEY \
300 if (pthread_key_create(&PL_thr_key, 0)) { \
301 PerlIO_printf(PerlIO_stderr(), "panic: pthread_key_create"); \
307 #ifndef FREE_THREAD_KEY
308 # define FREE_THREAD_KEY \
310 pthread_key_delete(PL_thr_key); \
314 #ifndef PTHREAD_ATFORK
315 # ifdef HAS_PTHREAD_ATFORK
316 # define PTHREAD_ATFORK(prepare,parent,child) \
317 pthread_atfork(prepare,parent,child)
319 # define PTHREAD_ATFORK(prepare,parent,child) \
324 #ifndef THREAD_RET_TYPE
325 # define THREAD_RET_TYPE void *
326 # define THREAD_RET_CAST(p) ((void *)(p))
327 #endif /* THREAD_RET */
329 # define LOCK_DOLLARZERO_MUTEX MUTEX_LOCK(&PL_dollarzero_mutex)
330 # define UNLOCK_DOLLARZERO_MUTEX MUTEX_UNLOCK(&PL_dollarzero_mutex)
332 #endif /* USE_ITHREADS */
335 # define MUTEX_LOCK(m)
339 # define MUTEX_UNLOCK(m)
343 # define MUTEX_INIT(m)
346 #ifndef MUTEX_DESTROY
347 # define MUTEX_DESTROY(m)
351 # define COND_INIT(c)
355 # define COND_SIGNAL(c)
358 #ifndef COND_BROADCAST
359 # define COND_BROADCAST(c)
363 # define COND_WAIT(c, m)
367 # define COND_DESTROY(c)
370 #ifndef LOCK_SV_MUTEX
371 # define LOCK_SV_MUTEX
374 #ifndef UNLOCK_SV_MUTEX
375 # define UNLOCK_SV_MUTEX
378 #ifndef LOCK_STRTAB_MUTEX
379 # define LOCK_STRTAB_MUTEX
382 #ifndef UNLOCK_STRTAB_MUTEX
383 # define UNLOCK_STRTAB_MUTEX
386 #ifndef LOCK_CRED_MUTEX
387 # define LOCK_CRED_MUTEX
390 #ifndef UNLOCK_CRED_MUTEX
391 # define UNLOCK_CRED_MUTEX
394 #ifndef LOCK_FDPID_MUTEX
395 # define LOCK_FDPID_MUTEX
398 #ifndef UNLOCK_FDPID_MUTEX
399 # define UNLOCK_FDPID_MUTEX
402 #ifndef LOCK_SV_LOCK_MUTEX
403 # define LOCK_SV_LOCK_MUTEX
406 #ifndef UNLOCK_SV_LOCK_MUTEX
407 # define UNLOCK_SV_LOCK_MUTEX
410 #ifndef LOCK_DOLLARZERO_MUTEX
411 # define LOCK_DOLLARZERO_MUTEX
414 #ifndef UNLOCK_DOLLARZERO_MUTEX
415 # define UNLOCK_DOLLARZERO_MUTEX
418 /* THR, SET_THR, and dTHR are there for compatibility with old versions */
420 # define THR PERL_GET_THX
424 # define SET_THR(t) PERL_SET_THX(t)
432 # define INIT_THREADS NOOP