(Retracted by #10042)
[p5sagit/p5-mst-13.2.git] / thread.h
1 #if defined(USE_THREADS) || defined(USE_ITHREADS)
2
3 #if defined(VMS)
4 #include <builtins.h>
5 #endif
6
7 #ifdef WIN32
8 #  include <win32thread.h>
9 #else
10 #  ifdef OLD_PTHREADS_API /* Here be dragons. */
11 #    define DETACH(t) \
12     STMT_START {                                                \
13         if (pthread_detach(&(t)->self)) {                       \
14             MUTEX_UNLOCK(&(t)->mutex);                          \
15             Perl_croak_nocontext("panic: DETACH");              \
16         }                                                       \
17     } STMT_END
18
19 #    define PERL_GET_CONTEXT    Perl_get_context()
20 #    define PERL_SET_CONTEXT(t) Perl_set_context((void*)t)
21
22 #    define PTHREAD_GETSPECIFIC_INT
23 #    ifdef DJGPP
24 #      define pthread_addr_t any_t
25 #      define NEED_PTHREAD_INIT
26 #      define PTHREAD_CREATE_JOINABLE (1)
27 #    endif
28 #    ifdef __OPEN_VM
29 #      define pthread_addr_t void *
30 #    endif
31 #    ifdef VMS
32 #      define pthread_attr_init(a) pthread_attr_create(a)
33 #      define PTHREAD_ATTR_SETDETACHSTATE(a,s) pthread_setdetach_np(a,s)
34 #      define PTHREAD_CREATE(t,a,s,d) pthread_create(t,a,s,d)
35 #      define pthread_key_create(k,d) pthread_keycreate(k,(pthread_destructor_t)(d))
36 #      define pthread_mutexattr_init(a) pthread_mutexattr_create(a)
37 #      define pthread_mutexattr_settype(a,t) pthread_mutexattr_setkind_np(a,t)
38 #    endif
39 #    if defined(__hpux) && defined(__ux_version) && __ux_version <= 1020
40 #      define pthread_attr_init(a) pthread_attr_create(a)
41        /* XXX pthread_setdetach_np() missing in DCE threads on HP-UX 10.20 */
42 #      define PTHREAD_ATTR_SETDETACHSTATE(a,s)  (0)
43 #      define PTHREAD_CREATE(t,a,s,d) pthread_create(t,a,s,d)
44 #      define pthread_key_create(k,d) pthread_keycreate(k,(pthread_destructor_t)(d))
45 #      define pthread_mutexattr_init(a) pthread_mutexattr_create(a)
46 #      define pthread_mutexattr_settype(a,t) pthread_mutexattr_setkind_np(a,t)
47 #    endif
48 #    if defined(DJGPP) || defined(__OPEN_VM)
49 #      define PTHREAD_ATTR_SETDETACHSTATE(a,s) pthread_attr_setdetachstate(a,&(s))
50 #      define YIELD pthread_yield(NULL)
51 #    endif
52 #  endif
53 #  if !defined(__hpux) || !defined(__ux_version) || __ux_version > 1020
54 #    define pthread_mutexattr_default NULL
55 #    define pthread_condattr_default  NULL
56 #  endif
57 #endif
58
59 #ifndef PTHREAD_CREATE
60 /* You are not supposed to pass NULL as the 2nd arg of PTHREAD_CREATE(). */
61 #  define PTHREAD_CREATE(t,a,s,d) pthread_create(t,&(a),s,d)
62 #endif
63
64 #ifndef PTHREAD_ATTR_SETDETACHSTATE
65 #  define PTHREAD_ATTR_SETDETACHSTATE(a,s) pthread_attr_setdetachstate(a,s)
66 #endif
67
68 #ifndef PTHREAD_CREATE_JOINABLE
69 #  ifdef OLD_PTHREAD_CREATE_JOINABLE
70 #    define PTHREAD_CREATE_JOINABLE OLD_PTHREAD_CREATE_JOINABLE
71 #  else
72 #    define PTHREAD_CREATE_JOINABLE 0 /* Panic?  No, guess. */
73 #  endif
74 #endif
75
76 #ifdef I_MACH_CTHREADS
77
78 /* cthreads interface */
79
80 /* #include <mach/cthreads.h> is in perl.h #ifdef I_MACH_CTHREADS */
81
82 #define MUTEX_INIT(m) \
83     STMT_START {                                                \
84         *m = mutex_alloc();                                     \
85         if (*m) {                                               \
86             mutex_init(*m);                                     \
87         } else {                                                \
88             Perl_croak_nocontext("panic: MUTEX_INIT");          \
89         }                                                       \
90     } STMT_END
91
92 #define MUTEX_LOCK(m)                   mutex_lock(*m)
93 #define MUTEX_UNLOCK(m)                 mutex_unlock(*m)
94 #define MUTEX_DESTROY(m) \
95     STMT_START {                                                \
96         mutex_free(*m);                                         \
97         *m = 0;                                                 \
98     } STMT_END
99
100 #define COND_INIT(c) \
101     STMT_START {                                                \
102         *c = condition_alloc();                                 \
103         if (*c) {                                               \
104             condition_init(*c);                                 \
105         }                                                       \
106         else {                                                  \
107             Perl_croak_nocontext("panic: COND_INIT");           \
108         }                                                       \
109     } STMT_END
110
111 #define COND_SIGNAL(c)          condition_signal(*c)
112 #define COND_BROADCAST(c)       condition_broadcast(*c)
113 #define COND_WAIT(c, m)         condition_wait(*c, *m)
114 #define COND_DESTROY(c) \
115     STMT_START {                                                \
116         condition_free(*c);                                     \
117         *c = 0;                                                 \
118     } STMT_END
119
120 #define THREAD_CREATE(thr, f)   (thr->self = cthread_fork(f, thr), 0)
121 #define THREAD_POST_CREATE(thr)
122
123 #define THREAD_RET_TYPE         any_t
124 #define THREAD_RET_CAST(x)      ((any_t) x)
125
126 #define DETACH(t)               cthread_detach(t->self)
127 #define JOIN(t, avp)            (*(avp) = (AV *)cthread_join(t->self))
128
129 #define PERL_SET_CONTEXT(t)     cthread_set_data(cthread_self(), t)
130 #define PERL_GET_CONTEXT        cthread_data(cthread_self())
131
132 #define INIT_THREADS            cthread_init()
133 #define YIELD                   cthread_yield()
134 #define ALLOC_THREAD_KEY        NOOP
135 #define FREE_THREAD_KEY         NOOP
136 #define SET_THREAD_SELF(thr)    (thr->self = cthread_self())
137
138 #endif /* I_MACH_CTHREADS */
139
140 #ifndef YIELD
141 #  ifdef SCHED_YIELD
142 #    define YIELD SCHED_YIELD
143 #  else
144 #    ifdef HAS_SCHED_YIELD
145 #      define YIELD sched_yield()
146 #    else
147 #      ifdef HAS_PTHREAD_YIELD
148     /* pthread_yield(NULL) platforms are expected
149      * to have #defined YIELD for themselves. */
150 #        define YIELD pthread_yield()
151 #      endif
152 #    endif
153 #  endif
154 #endif
155
156 #ifdef __hpux
157 #  define MUTEX_INIT_NEEDS_MUTEX_ZEROED
158 #endif
159
160 #ifndef MUTEX_INIT
161
162 #  ifdef MUTEX_INIT_NEEDS_MUTEX_ZEROED
163     /* Temporary workaround, true bug is deeper. --jhi 1999-02-25 */
164 #    define MUTEX_INIT(m) \
165     STMT_START {                                                \
166         Zero((m), 1, perl_mutex);                               \
167         if (pthread_mutex_init((m), pthread_mutexattr_default)) \
168             Perl_croak_nocontext("panic: MUTEX_INIT");          \
169     } STMT_END
170 #  else
171 #    define MUTEX_INIT(m) \
172     STMT_START {                                                \
173         if (pthread_mutex_init((m), pthread_mutexattr_default)) \
174             Perl_croak_nocontext("panic: MUTEX_INIT");          \
175     } STMT_END
176 #  endif
177
178 #  define MUTEX_LOCK(m) \
179     STMT_START {                                                \
180         if (pthread_mutex_lock((m)))                            \
181             Perl_croak_nocontext("panic: MUTEX_LOCK");          \
182     } STMT_END
183
184 #  define MUTEX_UNLOCK(m) \
185     STMT_START {                                                \
186         if (pthread_mutex_unlock((m)))                          \
187             Perl_croak_nocontext("panic: MUTEX_UNLOCK");        \
188     } STMT_END
189
190 #  define MUTEX_DESTROY(m) \
191     STMT_START {                                                \
192         if (pthread_mutex_destroy((m)))                         \
193             Perl_croak_nocontext("panic: MUTEX_DESTROY");       \
194     } STMT_END
195 #endif /* MUTEX_INIT */
196
197 #ifndef COND_INIT
198 #  define COND_INIT(c) \
199     STMT_START {                                                \
200         if (pthread_cond_init((c), pthread_condattr_default))   \
201             Perl_croak_nocontext("panic: COND_INIT");           \
202     } STMT_END
203
204 #  define COND_SIGNAL(c) \
205     STMT_START {                                                \
206         if (pthread_cond_signal((c)))                           \
207             Perl_croak_nocontext("panic: COND_SIGNAL");         \
208     } STMT_END
209
210 #  define COND_BROADCAST(c) \
211     STMT_START {                                                \
212         if (pthread_cond_broadcast((c)))                        \
213             Perl_croak_nocontext("panic: COND_BROADCAST");      \
214     } STMT_END
215
216 #  define COND_WAIT(c, m) \
217     STMT_START {                                                \
218         if (pthread_cond_wait((c), (m)))                        \
219             Perl_croak_nocontext("panic: COND_WAIT");           \
220     } STMT_END
221
222 #  define COND_DESTROY(c) \
223     STMT_START {                                                \
224         if (pthread_cond_destroy((c)))                          \
225             Perl_croak_nocontext("panic: COND_DESTROY");        \
226     } STMT_END
227 #endif /* COND_INIT */
228
229 /* DETACH(t) must only be called while holding t->mutex */
230 #ifndef DETACH
231 #  define DETACH(t) \
232     STMT_START {                                                \
233         if (pthread_detach((t)->self)) {                        \
234             MUTEX_UNLOCK(&(t)->mutex);                          \
235             Perl_croak_nocontext("panic: DETACH");              \
236         }                                                       \
237     } STMT_END
238 #endif /* DETACH */
239
240 #ifndef JOIN
241 #  define JOIN(t, avp) \
242     STMT_START {                                                \
243         if (pthread_join((t)->self, (void**)(avp)))             \
244             Perl_croak_nocontext("panic: pthread_join");        \
245     } STMT_END
246 #endif /* JOIN */
247
248 #ifndef PERL_GET_CONTEXT
249 #  define PERL_GET_CONTEXT      pthread_getspecific(PL_thr_key)
250 #endif
251
252 #ifndef PERL_SET_CONTEXT
253 #  define PERL_SET_CONTEXT(t) \
254     STMT_START {                                                \
255         if (pthread_setspecific(PL_thr_key, (void *)(t)))       \
256             Perl_croak_nocontext("panic: pthread_setspecific"); \
257     } STMT_END
258 #endif /* PERL_SET_CONTEXT */
259
260 #ifndef INIT_THREADS
261 #  ifdef NEED_PTHREAD_INIT
262 #    define INIT_THREADS pthread_init()
263 #  endif
264 #endif
265
266 #ifndef ALLOC_THREAD_KEY
267 #  define ALLOC_THREAD_KEY \
268     STMT_START {                                                \
269         if (pthread_key_create(&PL_thr_key, 0)) {               \
270             PerlIO_printf(PerlIO_stderr(), "panic: pthread_key_create");        \
271             exit(1);                                            \
272         }                                                       \
273     } STMT_END
274 #endif
275
276 #ifndef FREE_THREAD_KEY
277 #  define FREE_THREAD_KEY \
278     STMT_START {                                                \
279         pthread_key_delete(PL_thr_key);                         \
280     } STMT_END
281 #endif
282
283 #ifndef THREAD_RET_TYPE
284 #  define THREAD_RET_TYPE       void *
285 #  define THREAD_RET_CAST(p)    ((void *)(p))
286 #endif /* THREAD_RET */
287
288 #if defined(USE_THREADS)
289
290 /* Accessor for per-thread SVs */
291 #  define THREADSV(i) (thr->threadsvp[i])
292
293 /*
294  * LOCK_SV_MUTEX and UNLOCK_SV_MUTEX are performance-critical. Here, we
295  * try only locking them if there may be more than one thread in existence.
296  * Systems with very fast mutexes (and/or slow conditionals) may wish to
297  * remove the "if (threadnum) ..." test.
298  * XXX do NOT use C<if (PL_threadnum) ...> -- it sets up race conditions!
299  */
300 #  define LOCK_SV_MUTEX         MUTEX_LOCK(&PL_sv_mutex)
301 #  define UNLOCK_SV_MUTEX       MUTEX_UNLOCK(&PL_sv_mutex)
302 #  define LOCK_STRTAB_MUTEX     MUTEX_LOCK(&PL_strtab_mutex)
303 #  define UNLOCK_STRTAB_MUTEX   MUTEX_UNLOCK(&PL_strtab_mutex)
304 #  define LOCK_CRED_MUTEX       MUTEX_LOCK(&PL_cred_mutex)
305 #  define UNLOCK_CRED_MUTEX     MUTEX_UNLOCK(&PL_cred_mutex)
306 #  define LOCK_FDPID_MUTEX      MUTEX_LOCK(&PL_fdpid_mutex)
307 #  define UNLOCK_FDPID_MUTEX    MUTEX_UNLOCK(&PL_fdpid_mutex)
308 #  define LOCK_SV_LOCK_MUTEX    MUTEX_LOCK(&PL_sv_lock_mutex)
309 #  define UNLOCK_SV_LOCK_MUTEX  MUTEX_UNLOCK(&PL_sv_lock_mutex)
310
311 /* Values and macros for thr->flags */
312 #define THRf_STATE_MASK 7
313 #define THRf_R_JOINABLE 0
314 #define THRf_R_JOINED   1
315 #define THRf_R_DETACHED 2
316 #define THRf_ZOMBIE     3
317 #define THRf_DEAD       4
318
319 #define THRf_DID_DIE    8
320
321 /* ThrSTATE(t) and ThrSETSTATE(t) must only be called while holding t->mutex */
322 #define ThrSTATE(t) ((t)->flags & THRf_STATE_MASK)
323 #define ThrSETSTATE(t, s) STMT_START {          \
324         (t)->flags &= ~THRf_STATE_MASK;         \
325         (t)->flags |= (s);                      \
326         DEBUG_S(PerlIO_printf(Perl_debug_log,   \
327                               "thread %p set to state %d\n", (t), (s))); \
328     } STMT_END
329
330 typedef struct condpair {
331     perl_mutex  mutex;          /* Protects all other fields */
332     perl_cond   owner_cond;     /* For when owner changes at all */
333     perl_cond   cond;           /* For cond_signal and cond_broadcast */
334     Thread      owner;          /* Currently owning thread */
335 } condpair_t;
336
337 #define MgMUTEXP(mg) (&((condpair_t *)(mg->mg_ptr))->mutex)
338 #define MgOWNERCONDP(mg) (&((condpair_t *)(mg->mg_ptr))->owner_cond)
339 #define MgCONDP(mg) (&((condpair_t *)(mg->mg_ptr))->cond)
340 #define MgOWNER(mg) ((condpair_t *)(mg->mg_ptr))->owner
341
342 #endif /* USE_THREADS */
343 #endif /* USE_THREADS || USE_ITHREADS */
344
345 #ifndef MUTEX_LOCK
346 #  define MUTEX_LOCK(m)
347 #endif
348
349 #ifndef MUTEX_UNLOCK
350 #  define MUTEX_UNLOCK(m)
351 #endif
352
353 #ifndef MUTEX_INIT
354 #  define MUTEX_INIT(m)
355 #endif
356
357 #ifndef MUTEX_DESTROY
358 #  define MUTEX_DESTROY(m)
359 #endif
360
361 #ifndef COND_INIT
362 #  define COND_INIT(c)
363 #endif
364
365 #ifndef COND_SIGNAL
366 #  define COND_SIGNAL(c)
367 #endif
368
369 #ifndef COND_BROADCAST
370 #  define COND_BROADCAST(c)
371 #endif
372
373 #ifndef COND_WAIT
374 #  define COND_WAIT(c, m)
375 #endif
376
377 #ifndef COND_DESTROY
378 #  define COND_DESTROY(c)
379 #endif
380
381 #ifndef LOCK_SV_MUTEX
382 #  define LOCK_SV_MUTEX
383 #endif
384
385 #ifndef UNLOCK_SV_MUTEX
386 #  define UNLOCK_SV_MUTEX
387 #endif
388
389 #ifndef LOCK_STRTAB_MUTEX
390 #  define LOCK_STRTAB_MUTEX
391 #endif
392
393 #ifndef UNLOCK_STRTAB_MUTEX
394 #  define UNLOCK_STRTAB_MUTEX
395 #endif
396
397 #ifndef LOCK_CRED_MUTEX
398 #  define LOCK_CRED_MUTEX
399 #endif
400
401 #ifndef UNLOCK_CRED_MUTEX
402 #  define UNLOCK_CRED_MUTEX
403 #endif
404
405 #ifndef LOCK_FDPID_MUTEX
406 #  define LOCK_FDPID_MUTEX
407 #endif
408
409 #ifndef UNLOCK_FDPID_MUTEX
410 #  define UNLOCK_FDPID_MUTEX
411 #endif
412
413 #ifndef LOCK_SV_LOCK_MUTEX
414 #  define LOCK_SV_LOCK_MUTEX
415 #endif
416
417 #ifndef UNLOCK_SV_LOCK_MUTEX
418 #  define UNLOCK_SV_LOCK_MUTEX
419 #endif
420
421 /* THR, SET_THR, and dTHR are there for compatibility with old versions */
422 #ifndef THR
423 #  define THR           PERL_GET_THX
424 #endif
425
426 #ifndef SET_THR
427 #  define SET_THR(t)    PERL_SET_THX(t)
428 #endif
429
430 #ifndef dTHR
431 #  define dTHR dNOOP
432 #endif
433
434 #ifndef INIT_THREADS
435 #  define INIT_THREADS NOOP
436 #endif