1 #if defined(USE_THREADS) || defined(USE_ITHREADS)
4 # include <win32thread.h>
6 # ifdef OLD_PTHREADS_API /* Here be dragons. */
9 if (pthread_detach(&(t)->self)) { \
10 MUTEX_UNLOCK(&(t)->mutex); \
11 Perl_croak_nocontext("panic: DETACH"); \
15 # define PERL_GET_CONTEXT Perl_get_context()
16 # define PERL_SET_CONTEXT(t) Perl_set_context((void*)t)
18 # define PTHREAD_GETSPECIFIC_INT
20 # define pthread_addr_t any_t
21 # define NEED_PTHREAD_INIT
22 # define PTHREAD_CREATE_JOINABLE (1)
25 # define pthread_addr_t void *
28 # define pthread_attr_init(a) pthread_attr_create(a)
29 # define PTHREAD_ATTR_SETDETACHSTATE(a,s) pthread_setdetach_np(a,s)
30 # define PTHREAD_CREATE(t,a,s,d) pthread_create(t,a,s,d)
31 # define pthread_key_create(k,d) pthread_keycreate(k,(pthread_destructor_t)(d))
32 # define pthread_mutexattr_init(a) pthread_mutexattr_create(a)
33 # define pthread_mutexattr_settype(a,t) pthread_mutexattr_setkind_np(a,t)
35 # if defined(DJGPP) || defined(__OPEN_VM)
36 # define PTHREAD_ATTR_SETDETACHSTATE(a,s) pthread_attr_setdetachstate(a,&(s))
37 # define YIELD pthread_yield(NULL)
40 # define pthread_mutexattr_default NULL
41 # define pthread_condattr_default NULL
44 #ifndef PTHREAD_CREATE
45 /* You are not supposed to pass NULL as the 2nd arg of PTHREAD_CREATE(). */
46 # define PTHREAD_CREATE(t,a,s,d) pthread_create(t,&(a),s,d)
49 #ifndef PTHREAD_ATTR_SETDETACHSTATE
50 # define PTHREAD_ATTR_SETDETACHSTATE(a,s) pthread_attr_setdetachstate(a,s)
53 #ifndef PTHREAD_CREATE_JOINABLE
54 # ifdef OLD_PTHREAD_CREATE_JOINABLE
55 # define PTHREAD_CREATE_JOINABLE OLD_PTHREAD_CREATE_JOINABLE
57 # define PTHREAD_CREATE_JOINABLE 0 /* Panic? No, guess. */
61 #ifdef I_MACH_CTHREADS
63 /* cthreads interface */
65 /* #include <mach/cthreads.h> is in perl.h #ifdef I_MACH_CTHREADS */
67 #define MUTEX_INIT(m) \
73 Perl_croak_nocontext("panic: MUTEX_INIT"); \
77 #define MUTEX_LOCK(m) mutex_lock(*m)
78 #define MUTEX_UNLOCK(m) mutex_unlock(*m)
79 #define MUTEX_DESTROY(m) \
85 #define COND_INIT(c) \
87 *c = condition_alloc(); \
92 Perl_croak_nocontext("panic: COND_INIT"); \
96 #define COND_SIGNAL(c) condition_signal(*c)
97 #define COND_BROADCAST(c) condition_broadcast(*c)
98 #define COND_WAIT(c, m) condition_wait(*c, *m)
99 #define COND_DESTROY(c) \
101 condition_free(*c); \
105 #define THREAD_CREATE(thr, f) (thr->self = cthread_fork(f, thr), 0)
106 #define THREAD_POST_CREATE(thr)
108 #define THREAD_RET_TYPE any_t
109 #define THREAD_RET_CAST(x) ((any_t) x)
111 #define DETACH(t) cthread_detach(t->self)
112 #define JOIN(t, avp) (*(avp) = (AV *)cthread_join(t->self))
114 #define PERL_SET_CONTEXT(t) cthread_set_data(cthread_self(), t)
115 #define PERL_GET_CONTEXT cthread_data(cthread_self())
117 #define INIT_THREADS cthread_init()
118 #define YIELD cthread_yield()
119 #define ALLOC_THREAD_KEY NOOP
120 #define SET_THREAD_SELF(thr) (thr->self = cthread_self())
122 #endif /* I_MACH_CTHREADS */
126 # define YIELD SCHED_YIELD
128 # ifdef HAS_SCHED_YIELD
129 # define YIELD sched_yield()
131 # ifdef HAS_PTHREAD_YIELD
132 /* pthread_yield(NULL) platforms are expected
133 * to have #defined YIELD for themselves. */
134 # define YIELD pthread_yield()
141 # define MUTEX_INIT_NEEDS_MUTEX_ZEROED
146 # ifdef MUTEX_INIT_NEEDS_MUTEX_ZEROED
147 /* Temporary workaround, true bug is deeper. --jhi 1999-02-25 */
148 # define MUTEX_INIT(m) \
150 Zero((m), 1, perl_mutex); \
151 if (pthread_mutex_init((m), pthread_mutexattr_default)) \
152 Perl_croak_nocontext("panic: MUTEX_INIT"); \
155 # define MUTEX_INIT(m) \
157 if (pthread_mutex_init((m), pthread_mutexattr_default)) \
158 Perl_croak_nocontext("panic: MUTEX_INIT"); \
162 # define MUTEX_LOCK(m) \
164 if (pthread_mutex_lock((m))) \
165 Perl_croak_nocontext("panic: MUTEX_LOCK"); \
168 # define MUTEX_UNLOCK(m) \
170 if (pthread_mutex_unlock((m))) \
171 Perl_croak_nocontext("panic: MUTEX_UNLOCK"); \
174 # define MUTEX_DESTROY(m) \
176 if (pthread_mutex_destroy((m))) \
177 Perl_croak_nocontext("panic: MUTEX_DESTROY"); \
179 #endif /* MUTEX_INIT */
182 # define COND_INIT(c) \
184 if (pthread_cond_init((c), pthread_condattr_default)) \
185 Perl_croak_nocontext("panic: COND_INIT"); \
188 # define COND_SIGNAL(c) \
190 if (pthread_cond_signal((c))) \
191 Perl_croak_nocontext("panic: COND_SIGNAL"); \
194 # define COND_BROADCAST(c) \
196 if (pthread_cond_broadcast((c))) \
197 Perl_croak_nocontext("panic: COND_BROADCAST"); \
200 # define COND_WAIT(c, m) \
202 if (pthread_cond_wait((c), (m))) \
203 Perl_croak_nocontext("panic: COND_WAIT"); \
206 # define COND_DESTROY(c) \
208 if (pthread_cond_destroy((c))) \
209 Perl_croak_nocontext("panic: COND_DESTROY"); \
211 #endif /* COND_INIT */
213 /* DETACH(t) must only be called while holding t->mutex */
217 if (pthread_detach((t)->self)) { \
218 MUTEX_UNLOCK(&(t)->mutex); \
219 Perl_croak_nocontext("panic: DETACH"); \
225 # define JOIN(t, avp) \
227 if (pthread_join((t)->self, (void**)(avp))) \
228 Perl_croak_nocontext("panic: pthread_join"); \
232 #ifndef PERL_GET_CONTEXT
233 # define PERL_GET_CONTEXT pthread_getspecific(PL_thr_key)
236 #ifndef PERL_SET_CONTEXT
237 # define PERL_SET_CONTEXT(t) \
239 if (pthread_setspecific(PL_thr_key, (void *)(t))) \
240 Perl_croak_nocontext("panic: pthread_setspecific"); \
242 #endif /* PERL_SET_CONTEXT */
245 # ifdef NEED_PTHREAD_INIT
246 # define INIT_THREADS pthread_init()
250 #ifndef ALLOC_THREAD_KEY
251 # define ALLOC_THREAD_KEY \
253 if (pthread_key_create(&PL_thr_key, 0)) { \
254 fprintf(stderr, "panic: pthread_key_create"); \
260 #ifndef THREAD_RET_TYPE
261 # define THREAD_RET_TYPE void *
262 # define THREAD_RET_CAST(p) ((void *)(p))
263 #endif /* THREAD_RET */
265 #if defined(USE_THREADS)
267 /* Accessor for per-thread SVs */
268 # define THREADSV(i) (thr->threadsvp[i])
271 * LOCK_SV_MUTEX and UNLOCK_SV_MUTEX are performance-critical. Here, we
272 * try only locking them if there may be more than one thread in existence.
273 * Systems with very fast mutexes (and/or slow conditionals) may wish to
274 * remove the "if (threadnum) ..." test.
275 * XXX do NOT use C<if (PL_threadnum) ...> -- it sets up race conditions!
277 # define LOCK_SV_MUTEX MUTEX_LOCK(&PL_sv_mutex)
278 # define UNLOCK_SV_MUTEX MUTEX_UNLOCK(&PL_sv_mutex)
279 # define LOCK_STRTAB_MUTEX MUTEX_LOCK(&PL_strtab_mutex)
280 # define UNLOCK_STRTAB_MUTEX MUTEX_UNLOCK(&PL_strtab_mutex)
281 # define LOCK_CRED_MUTEX MUTEX_LOCK(&PL_cred_mutex)
282 # define UNLOCK_CRED_MUTEX MUTEX_UNLOCK(&PL_cred_mutex)
283 # define LOCK_FDPID_MUTEX MUTEX_LOCK(&PL_fdpid_mutex)
284 # define UNLOCK_FDPID_MUTEX MUTEX_UNLOCK(&PL_fdpid_mutex)
286 /* Values and macros for thr->flags */
287 #define THRf_STATE_MASK 7
288 #define THRf_R_JOINABLE 0
289 #define THRf_R_JOINED 1
290 #define THRf_R_DETACHED 2
291 #define THRf_ZOMBIE 3
294 #define THRf_DID_DIE 8
296 /* ThrSTATE(t) and ThrSETSTATE(t) must only be called while holding t->mutex */
297 #define ThrSTATE(t) ((t)->flags & THRf_STATE_MASK)
298 #define ThrSETSTATE(t, s) STMT_START { \
299 (t)->flags &= ~THRf_STATE_MASK; \
301 DEBUG_S(PerlIO_printf(Perl_debug_log, \
302 "thread %p set to state %d\n", (t), (s))); \
305 typedef struct condpair {
306 perl_mutex mutex; /* Protects all other fields */
307 perl_cond owner_cond; /* For when owner changes at all */
308 perl_cond cond; /* For cond_signal and cond_broadcast */
309 Thread owner; /* Currently owning thread */
312 #define MgMUTEXP(mg) (&((condpair_t *)(mg->mg_ptr))->mutex)
313 #define MgOWNERCONDP(mg) (&((condpair_t *)(mg->mg_ptr))->owner_cond)
314 #define MgCONDP(mg) (&((condpair_t *)(mg->mg_ptr))->cond)
315 #define MgOWNER(mg) ((condpair_t *)(mg->mg_ptr))->owner
317 #endif /* USE_THREADS */
318 #endif /* USE_THREADS || USE_ITHREADS */
321 # define MUTEX_LOCK(m)
325 # define MUTEX_UNLOCK(m)
329 # define MUTEX_INIT(m)
332 #ifndef MUTEX_DESTROY
333 # define MUTEX_DESTROY(m)
337 # define COND_INIT(c)
341 # define COND_SIGNAL(c)
344 #ifndef COND_BROADCAST
345 # define COND_BROADCAST(c)
349 # define COND_WAIT(c, m)
353 # define COND_DESTROY(c)
356 #ifndef LOCK_SV_MUTEX
357 # define LOCK_SV_MUTEX
360 #ifndef UNLOCK_SV_MUTEX
361 # define UNLOCK_SV_MUTEX
364 #ifndef LOCK_STRTAB_MUTEX
365 # define LOCK_STRTAB_MUTEX
368 #ifndef UNLOCK_STRTAB_MUTEX
369 # define UNLOCK_STRTAB_MUTEX
372 #ifndef LOCK_CRED_MUTEX
373 # define LOCK_CRED_MUTEX
376 #ifndef UNLOCK_CRED_MUTEX
377 # define UNLOCK_CRED_MUTEX
380 #ifndef LOCK_FDPID_MUTEX
381 # define LOCK_FDPID_MUTEX
384 #ifndef UNLOCK_FDPID_MUTEX
385 # define UNLOCK_FDPID_MUTEX
388 /* THR, SET_THR, and dTHR are there for compatibility with old versions */
390 # define THR PERL_GET_THX
394 # define SET_THR(t) PERL_SET_THX(t)
402 # define INIT_THREADS NOOP