4 # include <win32thread.h>
8 typedef pthread_t perl_thread;
9 #ifdef OLD_PTHREADS_API
10 # define pthread_mutexattr_init(a) pthread_mutexattr_create(a)
11 # define pthread_mutexattr_settype(a,t) pthread_mutexattr_setkind_np(a,t)
12 # define pthread_key_create(k,d) pthread_keycreate(k,(pthread_destructor_t)(d))
13 # define YIELD pthread_yield()
16 if (pthread_detach(&(t)->self)) { \
17 MUTEX_UNLOCK(&(t)->mutex); \
18 croak("panic: DETACH"); \
22 # define pthread_mutexattr_default NULL
23 # define pthread_condattr_default NULL
24 # define pthread_attr_default NULL
25 #endif /* OLD_PTHREADS_API */
29 # define YIELD sched_yield()
33 #define MUTEX_INIT(m) \
35 if (pthread_mutex_init((m), pthread_mutexattr_default)) \
36 croak("panic: MUTEX_INIT"); \
38 #define MUTEX_LOCK(m) \
40 if (pthread_mutex_lock((m))) \
41 croak("panic: MUTEX_LOCK"); \
43 #define MUTEX_UNLOCK(m) \
45 if (pthread_mutex_unlock((m))) \
46 croak("panic: MUTEX_UNLOCK"); \
48 #define MUTEX_DESTROY(m) \
50 if (pthread_mutex_destroy((m))) \
51 croak("panic: MUTEX_DESTROY"); \
53 #endif /* MUTEX_INIT */
56 #define COND_INIT(c) \
58 if (pthread_cond_init((c), pthread_condattr_default)) \
59 croak("panic: COND_INIT"); \
61 #define COND_SIGNAL(c) \
63 if (pthread_cond_signal((c))) \
64 croak("panic: COND_SIGNAL"); \
66 #define COND_BROADCAST(c) \
68 if (pthread_cond_broadcast((c))) \
69 croak("panic: COND_BROADCAST"); \
71 #define COND_WAIT(c, m) \
73 if (pthread_cond_wait((c), (m))) \
74 croak("panic: COND_WAIT"); \
76 #define COND_DESTROY(c) \
78 if (pthread_cond_destroy((c))) \
79 croak("panic: COND_DESTROY"); \
81 #endif /* COND_INIT */
83 /* DETACH(t) must only be called while holding t->mutex */
87 if (pthread_detach((t)->self)) { \
88 MUTEX_UNLOCK(&(t)->mutex); \
89 croak("panic: DETACH"); \
95 #define JOIN(t, avp) \
97 if (pthread_join((t)->self, (void**)(avp))) \
98 croak("panic: pthread_join"); \
105 if (pthread_setspecific(thr_key, (void *) (t))) \
106 croak("panic: pthread_setspecific"); \
111 # ifdef OLD_PTHREADS_API
112 struct thread *getTHR _((void));
113 # define THR getTHR()
115 # define THR ((struct thread *) pthread_getspecific(thr_key))
116 # endif /* OLD_PTHREADS_API */
120 # define dTHR struct thread *thr = THR
124 # ifdef NEED_PTHREAD_INIT
125 # define INIT_THREADS pthread_init()
127 # define INIT_THREADS NOOP
132 #ifndef THREAD_RET_TYPE
133 # define THREAD_RET_TYPE void *
134 # define THREAD_RET_CAST(p) ((void *)(p))
135 #endif /* THREAD_RET */
138 /* The fields that used to be global */
139 /* Important ones in the first cache line (if alignment is done right) */
141 #ifdef OP_IN_REGISTER
164 I32 * Tmarkstack_ptr;
165 I32 * Tmarkstack_max;
169 struct stat Tstatbuf;
170 struct tms Ttimesbuf;
172 /* XXX What about regexp stuff? */
174 /* Now the fields that used to be "per interpreter" (even when global) */
176 /* Fields used by magic variables such as $@, $/ and so on */
207 PERL_CONTEXT * Tcxstack;
216 /* XXX Sort stuff, firstgv, secongv and so on? */
220 perl_thread self; /* Underlying thread object */
222 AV * magicals; /* Per-thread magicals */
223 AV * specific; /* Thread-specific user data */
224 SV * errsv; /* Backing SV for $@ */
225 HV * errhv; /* HV for what was %@ in pp_ctl.c */
226 perl_mutex mutex; /* For the fields others can change */
228 struct thread *next, *prev; /* Circular linked list of threads */
229 JMPENV Tstart_env; /* Top of top_env longjmp() chain */
230 #ifdef HAVE_THREAD_INTERN
231 struct thread_intern i; /* Platform-dependent internals */
233 char trailing_nul; /* For the sake of thrsv and oursv */
236 typedef struct thread *Thread;
238 /* Values and macros for thr->flags */
239 #define THRf_STATE_MASK 7
240 #define THRf_R_JOINABLE 0
241 #define THRf_R_JOINED 1
242 #define THRf_R_DETACHED 2
243 #define THRf_ZOMBIE 3
246 #define THRf_DID_DIE 8
248 /* ThrSTATE(t) and ThrSETSTATE(t) must only be called while holding t->mutex */
249 #define ThrSTATE(t) ((t)->flags & THRf_STATE_MASK)
250 #define ThrSETSTATE(t, s) STMT_START { \
251 (t)->flags &= ~THRf_STATE_MASK; \
253 DEBUG_L(PerlIO_printf(PerlIO_stderr(), \
254 "thread %p set to state %d\n", (t), (s))); \
257 typedef struct condpair {
258 perl_mutex mutex; /* Protects all other fields */
259 perl_cond owner_cond; /* For when owner changes at all */
260 perl_cond cond; /* For cond_signal and cond_broadcast */
261 Thread owner; /* Currently owning thread */
264 #define MgMUTEXP(mg) (&((condpair_t *)(mg->mg_ptr))->mutex)
265 #define MgOWNERCONDP(mg) (&((condpair_t *)(mg->mg_ptr))->owner_cond)
266 #define MgCONDP(mg) (&((condpair_t *)(mg->mg_ptr))->cond)
267 #define MgOWNER(mg) ((condpair_t *)(mg->mg_ptr))->owner
279 #undef scopestack_max
321 #define stack_base (thr->Tstack_base)
322 #define stack_sp (thr->Tstack_sp)
323 #define stack_max (thr->Tstack_max)
324 #ifdef OP_IN_REGISTER
325 #define opsave (thr->Topsave)
328 #define op (thr->Top)
330 #define curcop (thr->Tcurcop)
331 #define stack (thr->Tstack)
332 #define curstack (thr->Tcurstack)
333 #define mainstack (thr->Tmainstack)
334 #define markstack (thr->Tmarkstack)
335 #define markstack_ptr (thr->Tmarkstack_ptr)
336 #define markstack_max (thr->Tmarkstack_max)
337 #define scopestack (thr->Tscopestack)
338 #define scopestack_ix (thr->Tscopestack_ix)
339 #define scopestack_max (thr->Tscopestack_max)
341 #define savestack (thr->Tsavestack)
342 #define savestack_ix (thr->Tsavestack_ix)
343 #define savestack_max (thr->Tsavestack_max)
345 #define retstack (thr->Tretstack)
346 #define retstack_ix (thr->Tretstack_ix)
347 #define retstack_max (thr->Tretstack_max)
349 #define cxstack (thr->Tcxstack)
350 #define cxstack_ix (thr->Tcxstack_ix)
351 #define cxstack_max (thr->Tcxstack_max)
353 #define curpad (thr->Tcurpad)
354 #define Sv (thr->TSv)
355 #define Xpv (thr->TXpv)
356 #define statbuf (thr->Tstatbuf)
357 #define timesbuf (thr->Ttimesbuf)
358 #define tainted (thr->Ttainted)
359 #define tainted (thr->Ttainted)
360 #define curpm (thr->Tcurpm)
361 #define nrs (thr->Tnrs)
362 #define rs (thr->Trs)
363 #define last_in_gv (thr->Tlast_in_gv)
364 #define ofs (thr->Tofs)
365 #define ofslen (thr->Tofslen)
366 #define defoutgv (thr->Tdefoutgv)
367 #define chopset (thr->Tchopset)
368 #define formtarget (thr->Tformtarget)
369 #define bodytarget (thr->Tbodytarget)
370 #define toptarget (thr->Ttoptarget)
371 #define defstash (thr->Tdefstash)
372 #define curstash (thr->Tcurstash)
374 #define tmps_stack (thr->Ttmps_stack)
375 #define tmps_ix (thr->Ttmps_ix)
376 #define tmps_floor (thr->Ttmps_floor)
377 #define tmps_max (thr->Ttmps_max)
379 #define in_eval (thr->Tin_eval)
380 #define restartop (thr->Trestartop)
381 #define delaymagic (thr->Tdelaymagic)
382 #define dirty (thr->Tdirty)
383 #define localizing (thr->Tlocalizing)
385 #define top_env (thr->Ttop_env)
386 #define runlevel (thr->Trunlevel)
387 #define start_env (thr->Tstart_env)
390 /* USE_THREADS is not defined */
391 #define MUTEX_LOCK(m)
392 #define MUTEX_UNLOCK(m)
393 #define MUTEX_INIT(m)
394 #define MUTEX_DESTROY(m)
396 #define COND_SIGNAL(c)
397 #define COND_BROADCAST(c)
398 #define COND_WAIT(c, m)
399 #define COND_DESTROY(c)
402 /* Rats: if dTHR is just blank then the subsequent ";" throws an error */
403 #define dTHR extern int errno
404 #endif /* USE_THREADS */