Mach cthreads support based on:
[p5sagit/p5-mst-13.2.git] / thread.h
1 #ifdef USE_THREADS
2
3 #ifdef WIN32
4 #  include <win32thread.h>
5 #else
6 #  ifdef OLD_PTHREADS_API /* Here be dragons. */
7 #    define DETACH(t)                           \
8     STMT_START {                                \
9         if (pthread_detach(&(t)->self)) {       \
10             MUTEX_UNLOCK(&(t)->mutex);          \
11             croak("panic: DETACH");             \
12         }                                       \
13     } STMT_END
14 #    define THR getTHR()
15 struct perl_thread *getTHR _((void));
16 #    define PTHREAD_GETSPECIFIC_INT
17 #    ifdef DJGPP
18 #      define pthread_addr_t any_t
19 #      define NEED_PTHREAD_INIT
20 #      define PTHREAD_CREATE_JOINABLE (1)
21 #    endif
22 #    ifdef __OPEN_VM
23 #      define pthread_addr_t void *
24 #    endif
25 #    ifdef VMS
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)
32 #    endif
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)
36 #    endif
37 #  endif
38 #  ifndef VMS
39 #    define pthread_mutexattr_default NULL
40 #    define pthread_condattr_default  NULL
41 #  endif
42 #endif
43
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)
47 #endif
48
49 #ifndef PTHREAD_ATTR_SETDETACHSTATE
50 #  define PTHREAD_ATTR_SETDETACHSTATE(a,s) pthread_attr_setdetachstate(a,s)
51 #endif
52
53 #ifdef I_MACH_CTHREADS
54
55 /* cthreads interface */
56
57 /* #include <mach/cthreads.h> is in perl.h #ifdef I_MACH_CTHREADS */
58
59 #define MUTEX_INIT(m)                                   \
60         STMT_START {                                    \
61                 *m = mutex_alloc();                     \
62                 if (*m) {                               \
63                         mutex_init(*m);                 \
64                 } else {                                \
65                         croak("panic: MUTEX_INIT");     \
66                 }                                       \
67         } STMT_END
68
69 #define MUTEX_LOCK(m)           mutex_lock(*m)
70 #define MUTEX_UNLOCK(m)         mutex_unlock(*m)
71 #define MUTEX_DESTROY(m)                                \
72         STMT_START {                                    \
73                 mutex_free(*m);                         \
74                 *m = 0;                                 \
75         } STMT_END
76
77 #define COND_INIT(c)                                    \
78         STMT_START {                                    \
79                 *c = condition_alloc();                 \
80                 if (*c) {                               \
81                         condition_init(*c);             \
82                 } else {                                \
83                         croak("panic: COND_INIT");      \
84                 }                                       \
85         } STMT_END
86
87 #define COND_SIGNAL(c)          condition_signal(*c)
88 #define COND_BROADCAST(c)       condition_broadcast(*c)
89 #define COND_WAIT(c, m)         condition_wait(*c, *m)
90 #define COND_DESTROY(c)                         \
91         STMT_START {                            \
92                 condition_free(*c);             \
93                 *c = 0;                         \
94         } STMT_END
95
96 #define THREAD_CREATE(thr, f)   (thr->self = cthread_fork(f, thr), 0)
97 #define THREAD_POST_CREATE(thr)
98
99 #define THREAD_RET_TYPE         any_t
100 #define THREAD_RET_CAST(x)      ((any_t) x)
101
102 #define DETACH(t)               cthread_detach(t->self)
103 #define JOIN(t, avp)            (*(avp) = (AV *)cthread_join(t->self))
104
105 #define SET_THR(thr)            cthread_set_data(cthread_self(), thr)
106 #define THR                     cthread_data(cthread_self())
107
108 #define INIT_THREADS            cthread_init()
109 #define YIELD                   cthread_yield()
110 #define ALLOC_THREAD_KEY
111 #define SET_THREAD_SELF(thr)    (thr->self = cthread_self())
112
113 #endif /* I_MACH_CTHREADS */
114
115 #ifndef YIELD
116 #  ifdef SCHED_YIELD
117 #    define YIELD SCHED_YIELD
118 #  else
119 #    ifdef HAS_SCHED_YIELD
120 #      define YIELD sched_yield()
121 #    else
122 #      ifdef HAS_PTHREAD_YIELD
123     /* pthread_yield(NULL) platforms are expected
124      * to have #defined YIELD for themselves. */
125 #        define YIELD pthread_yield()
126 #      endif
127 #    endif
128 #  endif
129 #endif
130
131 #ifdef PTHREADS_CREATED_JOINABLE
132 #  define ATTR_JOINABLE PTHREAD_CREATE_JOINABLE
133 #else
134 #  ifdef PTHREAD_CREATE_UNDETACHED
135 #    define ATTR_JOINABLE PTHREAD_CREATE_UNDETACHED
136 #  else
137 #    ifdef __UNDETACHED
138 #      define ATTR_JOINABLE __UNDETACHED
139 #    endif
140 #  endif
141 #endif
142
143 #ifndef MUTEX_INIT
144 #define MUTEX_INIT(m)                                           \
145     STMT_START {                                                \
146         if (pthread_mutex_init((m), pthread_mutexattr_default)) \
147             croak("panic: MUTEX_INIT");                         \
148     } STMT_END
149 #define MUTEX_LOCK(m)                           \
150     STMT_START {                                \
151         if (pthread_mutex_lock((m)))            \
152             croak("panic: MUTEX_LOCK");         \
153     } STMT_END
154 #define MUTEX_UNLOCK(m)                         \
155     STMT_START {                                \
156         if (pthread_mutex_unlock((m)))          \
157             croak("panic: MUTEX_UNLOCK");       \
158     } STMT_END
159 #define MUTEX_DESTROY(m)                        \
160     STMT_START {                                \
161         if (pthread_mutex_destroy((m)))         \
162             croak("panic: MUTEX_DESTROY");      \
163     } STMT_END
164 #endif /* MUTEX_INIT */
165
166 #ifndef COND_INIT
167 #define COND_INIT(c)                                            \
168     STMT_START {                                                \
169         if (pthread_cond_init((c), pthread_condattr_default))   \
170             croak("panic: COND_INIT");                          \
171     } STMT_END
172 #define COND_SIGNAL(c)                          \
173     STMT_START {                                \
174         if (pthread_cond_signal((c)))           \
175             croak("panic: COND_SIGNAL");        \
176     } STMT_END
177 #define COND_BROADCAST(c)                       \
178     STMT_START {                                \
179         if (pthread_cond_broadcast((c)))        \
180             croak("panic: COND_BROADCAST");     \
181     } STMT_END
182 #define COND_WAIT(c, m)                         \
183     STMT_START {                                \
184         if (pthread_cond_wait((c), (m)))        \
185             croak("panic: COND_WAIT");          \
186     } STMT_END
187 #define COND_DESTROY(c)                         \
188     STMT_START {                                \
189         if (pthread_cond_destroy((c)))          \
190             croak("panic: COND_DESTROY");       \
191     } STMT_END
192 #endif /* COND_INIT */
193
194 /* DETACH(t) must only be called while holding t->mutex */
195 #ifndef DETACH
196 #define DETACH(t)                               \
197     STMT_START {                                \
198         if (pthread_detach((t)->self)) {        \
199             MUTEX_UNLOCK(&(t)->mutex);          \
200             croak("panic: DETACH");             \
201         }                                       \
202     } STMT_END
203 #endif /* DETACH */
204
205 #ifndef JOIN
206 #define JOIN(t, avp)                                    \
207     STMT_START {                                        \
208         if (pthread_join((t)->self, (void**)(avp)))     \
209             croak("panic: pthread_join");               \
210     } STMT_END
211 #endif /* JOIN */
212
213 #ifndef SET_THR
214 #define SET_THR(t)                                      \
215     STMT_START {                                        \
216         if (pthread_setspecific(PL_thr_key, (void *) (t)))      \
217             croak("panic: pthread_setspecific");        \
218     } STMT_END
219 #endif /* SET_THR */
220
221 #ifndef THR
222 #define THR ((struct perl_thread *) pthread_getspecific(PL_thr_key))
223 #endif
224
225 /*
226  * dTHR is performance-critical. Here, we only do the pthread_get_specific
227  * if there may be more than one thread in existence, otherwise we get thr
228  * from thrsv which is cached in the per-interpreter structure.
229  * Systems with very fast pthread_get_specific (which should be all systems
230  * but unfortunately isn't) may wish to simplify to "...*thr = THR".
231  */
232 #ifndef dTHR
233 #  define dTHR \
234     struct perl_thread *thr = PL_threadnum? THR : (struct perl_thread*)SvPVX(PL_thrsv)
235 #endif /* dTHR */
236
237 #ifndef INIT_THREADS
238 #  ifdef NEED_PTHREAD_INIT
239 #    define INIT_THREADS pthread_init()
240 #  else
241 #    define INIT_THREADS NOOP
242 #  endif
243 #endif
244
245 /* Accessor for per-thread SVs */
246 #define THREADSV(i) (thr->threadsvp[i])
247
248 /*
249  * LOCK_SV_MUTEX and UNLOCK_SV_MUTEX are performance-critical. Here, we
250  * try only locking them if there may be more than one thread in existence.
251  * Systems with very fast mutexes (and/or slow conditionals) may wish to
252  * remove the "if (threadnum) ..." test.
253  */
254 #define LOCK_SV_MUTEX                           \
255     STMT_START {                                \
256         if (PL_threadnum)                       \
257             MUTEX_LOCK(&PL_sv_mutex);           \
258     } STMT_END
259
260 #define UNLOCK_SV_MUTEX                         \
261     STMT_START {                                \
262         if (PL_threadnum)                       \
263             MUTEX_UNLOCK(&PL_sv_mutex);         \
264     } STMT_END
265
266 /* Likewise for strtab_mutex */
267 #define LOCK_STRTAB_MUTEX                       \
268     STMT_START {                                \
269         if (PL_threadnum)                       \
270             MUTEX_LOCK(&PL_strtab_mutex);       \
271     } STMT_END
272
273 #define UNLOCK_STRTAB_MUTEX                     \
274     STMT_START {                                \
275         if (PL_threadnum)                       \
276             MUTEX_UNLOCK(&PL_strtab_mutex);     \
277     } STMT_END
278
279 #ifndef THREAD_RET_TYPE
280 #  define THREAD_RET_TYPE       void *
281 #  define THREAD_RET_CAST(p)    ((void *)(p))
282 #endif /* THREAD_RET */
283
284
285 /* Values and macros for thr->flags */
286 #define THRf_STATE_MASK 7
287 #define THRf_R_JOINABLE 0
288 #define THRf_R_JOINED   1
289 #define THRf_R_DETACHED 2
290 #define THRf_ZOMBIE     3
291 #define THRf_DEAD       4
292
293 #define THRf_DID_DIE    8
294
295 /* ThrSTATE(t) and ThrSETSTATE(t) must only be called while holding t->mutex */
296 #define ThrSTATE(t) ((t)->flags & THRf_STATE_MASK)
297 #define ThrSETSTATE(t, s) STMT_START {          \
298         (t)->flags &= ~THRf_STATE_MASK;         \
299         (t)->flags |= (s);                      \
300         DEBUG_S(PerlIO_printf(PerlIO_stderr(),  \
301                               "thread %p set to state %d\n", (t), (s))); \
302     } STMT_END
303
304 typedef struct condpair {
305     perl_mutex  mutex;          /* Protects all other fields */
306     perl_cond   owner_cond;     /* For when owner changes at all */
307     perl_cond   cond;           /* For cond_signal and cond_broadcast */
308     Thread      owner;          /* Currently owning thread */
309 } condpair_t;
310
311 #define MgMUTEXP(mg) (&((condpair_t *)(mg->mg_ptr))->mutex)
312 #define MgOWNERCONDP(mg) (&((condpair_t *)(mg->mg_ptr))->owner_cond)
313 #define MgCONDP(mg) (&((condpair_t *)(mg->mg_ptr))->cond)
314 #define MgOWNER(mg) ((condpair_t *)(mg->mg_ptr))->owner
315
316 #else
317 /* USE_THREADS is not defined */
318 #define MUTEX_LOCK(m)
319 #define MUTEX_UNLOCK(m)
320 #define MUTEX_INIT(m)
321 #define MUTEX_DESTROY(m)
322 #define COND_INIT(c)
323 #define COND_SIGNAL(c)
324 #define COND_BROADCAST(c)
325 #define COND_WAIT(c, m)
326 #define COND_DESTROY(c)
327 #define LOCK_SV_MUTEX
328 #define UNLOCK_SV_MUTEX
329 #define LOCK_STRTAB_MUTEX
330 #define UNLOCK_STRTAB_MUTEX
331
332 #define THR
333 /* Rats: if dTHR is just blank then the subsequent ";" throws an error */
334 #ifdef WIN32
335 #define dTHR extern int Perl___notused
336 #else
337 #define dTHR extern int errno
338 #endif
339 #endif /* USE_THREADS */