This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Allow hints file override for d_socket
[perl5.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 #ifndef MUTEX_INIT
132 #define MUTEX_INIT(m)                                           \
133     STMT_START {                                                \
134         if (pthread_mutex_init((m), pthread_mutexattr_default)) \
135             croak("panic: MUTEX_INIT");                         \
136     } STMT_END
137 #define MUTEX_LOCK(m)                           \
138     STMT_START {                                \
139         if (pthread_mutex_lock((m)))            \
140             croak("panic: MUTEX_LOCK");         \
141     } STMT_END
142 #define MUTEX_UNLOCK(m)                         \
143     STMT_START {                                \
144         if (pthread_mutex_unlock((m)))          \
145             croak("panic: MUTEX_UNLOCK");       \
146     } STMT_END
147 #define MUTEX_DESTROY(m)                        \
148     STMT_START {                                \
149         if (pthread_mutex_destroy((m)))         \
150             croak("panic: MUTEX_DESTROY");      \
151     } STMT_END
152 #endif /* MUTEX_INIT */
153
154 #ifndef COND_INIT
155 #define COND_INIT(c)                                            \
156     STMT_START {                                                \
157         if (pthread_cond_init((c), pthread_condattr_default))   \
158             croak("panic: COND_INIT");                          \
159     } STMT_END
160 #define COND_SIGNAL(c)                          \
161     STMT_START {                                \
162         if (pthread_cond_signal((c)))           \
163             croak("panic: COND_SIGNAL");        \
164     } STMT_END
165 #define COND_BROADCAST(c)                       \
166     STMT_START {                                \
167         if (pthread_cond_broadcast((c)))        \
168             croak("panic: COND_BROADCAST");     \
169     } STMT_END
170 #define COND_WAIT(c, m)                         \
171     STMT_START {                                \
172         if (pthread_cond_wait((c), (m)))        \
173             croak("panic: COND_WAIT");          \
174     } STMT_END
175 #define COND_DESTROY(c)                         \
176     STMT_START {                                \
177         if (pthread_cond_destroy((c)))          \
178             croak("panic: COND_DESTROY");       \
179     } STMT_END
180 #endif /* COND_INIT */
181
182 /* DETACH(t) must only be called while holding t->mutex */
183 #ifndef DETACH
184 #define DETACH(t)                               \
185     STMT_START {                                \
186         if (pthread_detach((t)->self)) {        \
187             MUTEX_UNLOCK(&(t)->mutex);          \
188             croak("panic: DETACH");             \
189         }                                       \
190     } STMT_END
191 #endif /* DETACH */
192
193 #ifndef JOIN
194 #define JOIN(t, avp)                                    \
195     STMT_START {                                        \
196         if (pthread_join((t)->self, (void**)(avp)))     \
197             croak("panic: pthread_join");               \
198     } STMT_END
199 #endif /* JOIN */
200
201 #ifndef SET_THR
202 #define SET_THR(t)                                      \
203     STMT_START {                                        \
204         if (pthread_setspecific(PL_thr_key, (void *) (t)))      \
205             croak("panic: pthread_setspecific");        \
206     } STMT_END
207 #endif /* SET_THR */
208
209 #ifndef THR
210 #define THR ((struct perl_thread *) pthread_getspecific(PL_thr_key))
211 #endif
212
213 /*
214  * dTHR is performance-critical. Here, we only do the pthread_get_specific
215  * if there may be more than one thread in existence, otherwise we get thr
216  * from thrsv which is cached in the per-interpreter structure.
217  * Systems with very fast pthread_get_specific (which should be all systems
218  * but unfortunately isn't) may wish to simplify to "...*thr = THR".
219  */
220 #ifndef dTHR
221 #  define dTHR \
222     struct perl_thread *thr = PL_threadnum? THR : (struct perl_thread*)SvPVX(PL_thrsv)
223 #endif /* dTHR */
224
225 #ifndef INIT_THREADS
226 #  ifdef NEED_PTHREAD_INIT
227 #    define INIT_THREADS pthread_init()
228 #  else
229 #    define INIT_THREADS NOOP
230 #  endif
231 #endif
232
233 /* Accessor for per-thread SVs */
234 #define THREADSV(i) (thr->threadsvp[i])
235
236 /*
237  * LOCK_SV_MUTEX and UNLOCK_SV_MUTEX are performance-critical. Here, we
238  * try only locking them if there may be more than one thread in existence.
239  * Systems with very fast mutexes (and/or slow conditionals) may wish to
240  * remove the "if (threadnum) ..." test.
241  */
242 #define LOCK_SV_MUTEX                           \
243     STMT_START {                                \
244         if (PL_threadnum)                       \
245             MUTEX_LOCK(&PL_sv_mutex);           \
246     } STMT_END
247
248 #define UNLOCK_SV_MUTEX                         \
249     STMT_START {                                \
250         if (PL_threadnum)                       \
251             MUTEX_UNLOCK(&PL_sv_mutex);         \
252     } STMT_END
253
254 /* Likewise for strtab_mutex */
255 #define LOCK_STRTAB_MUTEX                       \
256     STMT_START {                                \
257         if (PL_threadnum)                       \
258             MUTEX_LOCK(&PL_strtab_mutex);       \
259     } STMT_END
260
261 #define UNLOCK_STRTAB_MUTEX                     \
262     STMT_START {                                \
263         if (PL_threadnum)                       \
264             MUTEX_UNLOCK(&PL_strtab_mutex);     \
265     } STMT_END
266
267 #ifndef THREAD_RET_TYPE
268 #  define THREAD_RET_TYPE       void *
269 #  define THREAD_RET_CAST(p)    ((void *)(p))
270 #endif /* THREAD_RET */
271
272
273 /* Values and macros for thr->flags */
274 #define THRf_STATE_MASK 7
275 #define THRf_R_JOINABLE 0
276 #define THRf_R_JOINED   1
277 #define THRf_R_DETACHED 2
278 #define THRf_ZOMBIE     3
279 #define THRf_DEAD       4
280
281 #define THRf_DID_DIE    8
282
283 /* ThrSTATE(t) and ThrSETSTATE(t) must only be called while holding t->mutex */
284 #define ThrSTATE(t) ((t)->flags & THRf_STATE_MASK)
285 #define ThrSETSTATE(t, s) STMT_START {          \
286         (t)->flags &= ~THRf_STATE_MASK;         \
287         (t)->flags |= (s);                      \
288         DEBUG_S(PerlIO_printf(PerlIO_stderr(),  \
289                               "thread %p set to state %d\n", (t), (s))); \
290     } STMT_END
291
292 typedef struct condpair {
293     perl_mutex  mutex;          /* Protects all other fields */
294     perl_cond   owner_cond;     /* For when owner changes at all */
295     perl_cond   cond;           /* For cond_signal and cond_broadcast */
296     Thread      owner;          /* Currently owning thread */
297 } condpair_t;
298
299 #define MgMUTEXP(mg) (&((condpair_t *)(mg->mg_ptr))->mutex)
300 #define MgOWNERCONDP(mg) (&((condpair_t *)(mg->mg_ptr))->owner_cond)
301 #define MgCONDP(mg) (&((condpair_t *)(mg->mg_ptr))->cond)
302 #define MgOWNER(mg) ((condpair_t *)(mg->mg_ptr))->owner
303
304 #else
305 /* USE_THREADS is not defined */
306 #define MUTEX_LOCK(m)
307 #define MUTEX_UNLOCK(m)
308 #define MUTEX_INIT(m)
309 #define MUTEX_DESTROY(m)
310 #define COND_INIT(c)
311 #define COND_SIGNAL(c)
312 #define COND_BROADCAST(c)
313 #define COND_WAIT(c, m)
314 #define COND_DESTROY(c)
315 #define LOCK_SV_MUTEX
316 #define UNLOCK_SV_MUTEX
317 #define LOCK_STRTAB_MUTEX
318 #define UNLOCK_STRTAB_MUTEX
319
320 #define THR
321 /* Rats: if dTHR is just blank then the subsequent ";" throws an error */
322 #ifdef WIN32
323 #define dTHR extern int Perl___notused
324 #else
325 #define dTHR extern int errno
326 #endif
327 #endif /* USE_THREADS */