4 # include <win32thread.h>
6 # ifdef OLD_PTHREADS_API /* Here be dragons. */
9 if (pthread_detach(&(t)->self)) { \
10 MUTEX_UNLOCK(&(t)->mutex); \
11 croak("panic: DETACH"); \
15 struct perl_thread *getTHR _((void));
16 # define PTHREAD_GETSPECIFIC_INT
18 # define pthread_addr_t any_t
19 # define NEED_PTHREAD_INIT
20 # define PTHREAD_CREATE_JOINABLE (1)
23 # define pthread_addr_t void *
26 # define pthread_attr_init(a) pthread_attr_create(a)
27 # define PTHREAD_ATTR_SETDETACHSTATE(a,s) pthread_setdetach_np(a,s)
28 # define PTHREAD_CREATE(t,a,s,d) pthread_create(t,a,s,d)
29 # define pthread_key_create(k,d) pthread_keycreate(k,(pthread_destructor_t)(d))
30 # define pthread_mutexattr_init(a) pthread_mutexattr_create(a)
31 # define pthread_mutexattr_settype(a,t) pthread_mutexattr_setkind_np(a,t)
33 # if defined(DJGPP) || defined(__OPEN_VM)
34 # define PTHREAD_ATTR_SETDETACHSTATE(a,s) pthread_attr_setdetachstate(a,&(s))
35 # define YIELD pthread_yield(NULL)
39 # define pthread_mutexattr_default NULL
40 # 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 croak("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(); \
91 croak("panic: COND_INIT"); \
95 #define COND_SIGNAL(c) condition_signal(*c)
96 #define COND_BROADCAST(c) condition_broadcast(*c)
97 #define COND_WAIT(c, m) condition_wait(*c, *m)
98 #define COND_DESTROY(c) \
100 condition_free(*c); \
104 #define THREAD_CREATE(thr, f) (thr->self = cthread_fork(f, thr), 0)
105 #define THREAD_POST_CREATE(thr)
107 #define THREAD_RET_TYPE any_t
108 #define THREAD_RET_CAST(x) ((any_t) x)
110 #define DETACH(t) cthread_detach(t->self)
111 #define JOIN(t, avp) (*(avp) = (AV *)cthread_join(t->self))
113 #define SET_THR(thr) cthread_set_data(cthread_self(), thr)
114 #define THR cthread_data(cthread_self())
116 #define INIT_THREADS cthread_init()
117 #define YIELD cthread_yield()
118 #define ALLOC_THREAD_KEY
119 #define SET_THREAD_SELF(thr) (thr->self = cthread_self())
121 #endif /* I_MACH_CTHREADS */
125 # define YIELD SCHED_YIELD
127 # ifdef HAS_SCHED_YIELD
128 # define YIELD sched_yield()
130 # ifdef HAS_PTHREAD_YIELD
131 /* pthread_yield(NULL) platforms are expected
132 * to have #defined YIELD for themselves. */
133 # define YIELD pthread_yield()
140 # define MUTEX_INIT_NEEDS_MUTEX_ZEROED
144 #ifdef MUTEX_INIT_NEEDS_MUTEX_ZEROED
145 /* Temporary workaround, true bug is deeper. --jhi 1999-02-25 */
146 #define MUTEX_INIT(m) \
148 Zero((m), 1, perl_mutex); \
149 if (pthread_mutex_init((m), pthread_mutexattr_default)) \
150 croak("panic: MUTEX_INIT"); \
153 #define MUTEX_INIT(m) \
155 if (pthread_mutex_init((m), pthread_mutexattr_default)) \
156 croak("panic: MUTEX_INIT"); \
159 #define MUTEX_LOCK(m) \
161 if (pthread_mutex_lock((m))) \
162 croak("panic: MUTEX_LOCK"); \
164 #define MUTEX_UNLOCK(m) \
166 if (pthread_mutex_unlock((m))) \
167 croak("panic: MUTEX_UNLOCK"); \
169 #define MUTEX_DESTROY(m) \
171 if (pthread_mutex_destroy((m))) \
172 croak("panic: MUTEX_DESTROY"); \
174 #endif /* MUTEX_INIT */
177 #define COND_INIT(c) \
179 if (pthread_cond_init((c), pthread_condattr_default)) \
180 croak("panic: COND_INIT"); \
182 #define COND_SIGNAL(c) \
184 if (pthread_cond_signal((c))) \
185 croak("panic: COND_SIGNAL"); \
187 #define COND_BROADCAST(c) \
189 if (pthread_cond_broadcast((c))) \
190 croak("panic: COND_BROADCAST"); \
192 #define COND_WAIT(c, m) \
194 if (pthread_cond_wait((c), (m))) \
195 croak("panic: COND_WAIT"); \
197 #define COND_DESTROY(c) \
199 if (pthread_cond_destroy((c))) \
200 croak("panic: COND_DESTROY"); \
202 #endif /* COND_INIT */
204 /* DETACH(t) must only be called while holding t->mutex */
208 if (pthread_detach((t)->self)) { \
209 MUTEX_UNLOCK(&(t)->mutex); \
210 croak("panic: DETACH"); \
216 #define JOIN(t, avp) \
218 if (pthread_join((t)->self, (void**)(avp))) \
219 croak("panic: pthread_join"); \
226 if (pthread_setspecific(PL_thr_key, (void *) (t))) \
227 croak("panic: pthread_setspecific"); \
232 #define THR ((struct perl_thread *) pthread_getspecific(PL_thr_key))
236 * dTHR is performance-critical. Here, we only do the pthread_get_specific
237 * if there may be more than one thread in existence, otherwise we get thr
238 * from thrsv which is cached in the per-interpreter structure.
239 * Systems with very fast pthread_get_specific (which should be all systems
240 * but unfortunately isn't) may wish to simplify to "...*thr = THR".
242 * The use of PL_threadnum should be safe here.
246 struct perl_thread *thr = PL_threadnum? THR : (struct perl_thread*)SvPVX(PL_thrsv)
250 # ifdef NEED_PTHREAD_INIT
251 # define INIT_THREADS pthread_init()
253 # define INIT_THREADS NOOP
257 /* Accessor for per-thread SVs */
258 #define THREADSV(i) (thr->threadsvp[i])
261 * LOCK_SV_MUTEX and UNLOCK_SV_MUTEX are performance-critical. Here, we
262 * try only locking them if there may be more than one thread in existence.
263 * Systems with very fast mutexes (and/or slow conditionals) may wish to
264 * remove the "if (threadnum) ..." test.
265 * XXX do NOT use C<if (PL_threadnum) ...> -- it sets up race conditions!
267 #define LOCK_SV_MUTEX \
269 MUTEX_LOCK(&PL_sv_mutex); \
272 #define UNLOCK_SV_MUTEX \
274 MUTEX_UNLOCK(&PL_sv_mutex); \
277 /* Likewise for strtab_mutex */
278 #define LOCK_STRTAB_MUTEX \
280 MUTEX_LOCK(&PL_strtab_mutex); \
283 #define UNLOCK_STRTAB_MUTEX \
285 MUTEX_UNLOCK(&PL_strtab_mutex); \
288 #ifndef THREAD_RET_TYPE
289 # define THREAD_RET_TYPE void *
290 # define THREAD_RET_CAST(p) ((void *)(p))
291 #endif /* THREAD_RET */
294 /* Values and macros for thr->flags */
295 #define THRf_STATE_MASK 7
296 #define THRf_R_JOINABLE 0
297 #define THRf_R_JOINED 1
298 #define THRf_R_DETACHED 2
299 #define THRf_ZOMBIE 3
302 #define THRf_DID_DIE 8
304 /* ThrSTATE(t) and ThrSETSTATE(t) must only be called while holding t->mutex */
305 #define ThrSTATE(t) ((t)->flags & THRf_STATE_MASK)
306 #define ThrSETSTATE(t, s) STMT_START { \
307 (t)->flags &= ~THRf_STATE_MASK; \
309 DEBUG_S(PerlIO_printf(PerlIO_stderr(), \
310 "thread %p set to state %d\n", (t), (s))); \
313 typedef struct condpair {
314 perl_mutex mutex; /* Protects all other fields */
315 perl_cond owner_cond; /* For when owner changes at all */
316 perl_cond cond; /* For cond_signal and cond_broadcast */
317 Thread owner; /* Currently owning thread */
320 #define MgMUTEXP(mg) (&((condpair_t *)(mg->mg_ptr))->mutex)
321 #define MgOWNERCONDP(mg) (&((condpair_t *)(mg->mg_ptr))->owner_cond)
322 #define MgCONDP(mg) (&((condpair_t *)(mg->mg_ptr))->cond)
323 #define MgOWNER(mg) ((condpair_t *)(mg->mg_ptr))->owner
326 /* USE_THREADS is not defined */
327 #define MUTEX_LOCK(m)
328 #define MUTEX_UNLOCK(m)
329 #define MUTEX_INIT(m)
330 #define MUTEX_DESTROY(m)
332 #define COND_SIGNAL(c)
333 #define COND_BROADCAST(c)
334 #define COND_WAIT(c, m)
335 #define COND_DESTROY(c)
336 #define LOCK_SV_MUTEX
337 #define UNLOCK_SV_MUTEX
338 #define LOCK_STRTAB_MUTEX
339 #define UNLOCK_STRTAB_MUTEX
342 /* Rats: if dTHR is just blank then the subsequent ";" throws an error */
344 #define dTHR extern int Perl___notused
346 #define dTHR extern int errno
348 #endif /* USE_THREADS */