3a1ea14e1126f759cad1d7ec2b8c1605a1d9e6f5
[p5sagit/p5-mst-13.2.git] / ext / threads / threads.xs
1 #define PERL_NO_GET_CONTEXT
2 #include "EXTERN.h"
3 #include "perl.h"
4 #include "XSUB.h"
5 /* Workaround for XSUB.h bug under WIN32 */
6 #ifdef WIN32
7 #  undef setjmp
8 #  if !defined(__BORLANDC__)
9 #    define setjmp(x) _setjmp(x)
10 #  endif
11 #endif
12 #ifdef HAS_PPPORT_H
13 #  define NEED_PL_signals
14 #  define NEED_newRV_noinc
15 #  define NEED_sv_2pv_nolen
16 #  include "ppport.h"
17 #  include "threads.h"
18 #endif
19
20 #ifdef USE_ITHREADS
21
22 #ifdef WIN32
23 #  include <windows.h>
24    /* Supposed to be in Winbase.h */
25 #  ifndef STACK_SIZE_PARAM_IS_A_RESERVATION
26 #    define STACK_SIZE_PARAM_IS_A_RESERVATION 0x00010000
27 #  endif
28 #  include <win32thread.h>
29 #else
30 #  ifdef OS2
31 typedef perl_os_thread pthread_t;
32 #  else
33 #    include <pthread.h>
34 #  endif
35 #  include <thread.h>
36 #  define PERL_THREAD_SETSPECIFIC(k,v) pthread_setspecific(k,v)
37 #  ifdef OLD_PTHREADS_API
38 #    define PERL_THREAD_DETACH(t) pthread_detach(&(t))
39 #  else
40 #    define PERL_THREAD_DETACH(t) pthread_detach((t))
41 #  endif
42 #endif
43 #if !defined(HAS_GETPAGESIZE) && defined(I_SYS_PARAM)
44 #  include <sys/param.h>
45 #endif
46
47 /* Values for 'state' member */
48 #define PERL_ITHR_DETACHED              1
49 #define PERL_ITHR_JOINED                2
50 #define PERL_ITHR_FINISHED              4
51 #define PERL_ITHR_THREAD_EXIT_ONLY      8
52 #define PERL_ITHR_NONVIABLE             16
53 #define PERL_ITHR_DESTROYED             32
54
55 typedef struct _ithread {
56     struct _ithread *next;      /* Next thread in the list */
57     struct _ithread *prev;      /* Prev thread in the list */
58     PerlInterpreter *interp;    /* The threads interpreter */
59     UV tid;                     /* Threads module's thread id */
60     perl_mutex mutex;           /* Mutex for updating things in this struct */
61     int count;                  /* How many SVs have a reference to us */
62     int state;                  /* Detached, joined, finished, etc. */
63     int gimme;                  /* Context of create */
64     SV *init_function;          /* Code to run */
65     SV *params;                 /* Args to pass function */
66 #ifdef WIN32
67     DWORD  thr;                 /* OS's idea if thread id */
68     HANDLE handle;              /* OS's waitable handle */
69 #else
70     pthread_t thr;              /* OS's handle for the thread */
71 #endif
72     IV stack_size;
73 } ithread;
74
75
76 #define MY_CXT_KEY "threads::_cxt" XS_VERSION
77
78 typedef struct {
79     /* Used by Perl interpreter for thread context switching */
80     ithread *context;
81 } my_cxt_t;
82
83 START_MY_CXT
84
85
86 #define MY_POOL_KEY "threads::_pool" XS_VERSION
87
88 typedef struct {
89     /* Structure for 'main' thread
90      * Also forms the 'base' for the doubly-linked list of threads */
91     ithread main_thread;
92
93     /* Protects the creation and destruction of threads*/
94     perl_mutex create_destruct_mutex;
95
96     UV tid_counter;
97     IV joinable_threads;
98     IV running_threads;
99     IV detached_threads;
100     IV default_stack_size;
101     IV page_size;
102 } my_pool_t;
103
104 #define dMY_POOL \
105     SV *my_pool_sv = *hv_fetch(PL_modglobal, MY_POOL_KEY,               \
106                                sizeof(MY_POOL_KEY)-1, TRUE);            \
107     my_pool_t *my_poolp = INT2PTR(my_pool_t*, SvUV(my_pool_sv))
108
109 #define MY_POOL (*my_poolp)
110
111
112 /* Used by Perl interpreter for thread context switching */
113 STATIC void
114 S_ithread_set(pTHX_ ithread *thread)
115 {
116     dMY_CXT;
117     MY_CXT.context = thread;
118 }
119
120 STATIC ithread *
121 S_ithread_get(pTHX)
122 {
123     dMY_CXT;
124     return (MY_CXT.context);
125 }
126
127
128 /* Free any data (such as the Perl interpreter) attached to an ithread
129  * structure.  This is a bit like undef on SVs, where the SV isn't freed,
130  * but the PVX is.  Must be called with thread->mutex already held.
131  */
132 STATIC void
133 S_ithread_clear(pTHX_ ithread *thread)
134 {
135     PerlInterpreter *interp;
136
137     assert(((thread->state & PERL_ITHR_FINISHED) &&
138             (thread->state & (PERL_ITHR_DETACHED|PERL_ITHR_JOINED)))
139                 ||
140            (thread->state & PERL_ITHR_NONVIABLE));
141
142     interp = thread->interp;
143     if (interp) {
144         dTHXa(interp);
145
146         PERL_SET_CONTEXT(interp);
147         S_ithread_set(aTHX_ thread);
148
149         SvREFCNT_dec(thread->params);
150         thread->params = Nullsv;
151
152         perl_destruct(interp);
153         perl_free(interp);
154         thread->interp = NULL;
155     }
156
157     PERL_SET_CONTEXT(aTHX);
158 }
159
160
161 /* Free an ithread structure and any attached data if its count == 0 */
162 STATIC void
163 S_ithread_destruct(pTHX_ ithread *thread)
164 {
165     int destroy = 0;
166 #ifdef WIN32
167     HANDLE handle;
168 #endif
169     dMY_POOL;
170
171     /* Determine if thread can be destroyed now */
172     MUTEX_LOCK(&thread->mutex);
173     if (thread->count != 0) {
174         destroy = 0;
175     } else if (thread->state & PERL_ITHR_DESTROYED) {
176         destroy = 0;
177     } else if (thread->state & PERL_ITHR_NONVIABLE) {
178         thread->state |= PERL_ITHR_DESTROYED;
179         destroy = 1;
180     } else if (! (thread->state & PERL_ITHR_FINISHED)) {
181         destroy = 0;
182     } else if (! (thread->state & (PERL_ITHR_DETACHED|PERL_ITHR_JOINED))) {
183         destroy = 0;
184     } else {
185         thread->state |= PERL_ITHR_DESTROYED;
186         destroy = 1;
187     }
188     MUTEX_UNLOCK(&thread->mutex);
189     if (! destroy) return;
190
191     /* Main thread (0) is immortal and should never get here */
192     assert(thread->tid != 0);
193
194     /* Remove from circular list of threads */
195     MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
196     assert(thread->prev && thread->next);
197     thread->next->prev = thread->prev;
198     thread->prev->next = thread->next;
199     thread->next = NULL;
200     thread->prev = NULL;
201     MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
202
203     /* Thread is now disowned */
204     MUTEX_LOCK(&thread->mutex);
205     S_ithread_clear(aTHX_ thread);
206
207 #ifdef WIN32
208     handle = thread->handle;
209     thread->handle = NULL;
210 #endif
211     MUTEX_UNLOCK(&thread->mutex);
212     MUTEX_DESTROY(&thread->mutex);
213
214 #ifdef WIN32
215     if (handle) {
216         CloseHandle(handle);
217     }
218 #endif
219
220     /* Call PerlMemShared_free() in the context of the "first" interpreter
221      * per http://www.nntp.perl.org/group/perl.perl5.porters/110772
222      */
223     aTHX = MY_POOL.main_thread.interp;
224     PerlMemShared_free(thread);
225 }
226
227
228 /* Warn if exiting with any unjoined threads */
229 STATIC int
230 S_exit_warning(pTHX)
231 {
232     int veto_cleanup;
233     dMY_POOL;
234
235     MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
236     veto_cleanup = (MY_POOL.running_threads || MY_POOL.joinable_threads);
237     MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
238
239     if (veto_cleanup) {
240         if (ckWARN_d(WARN_THREADS)) {
241             Perl_warn(aTHX_ "Perl exited with active threads:\n\t%"
242                             IVdf " running and unjoined\n\t%"
243                             IVdf " finished and unjoined\n\t%"
244                             IVdf " running and detached\n",
245                             MY_POOL.running_threads,
246                             MY_POOL.joinable_threads,
247                             MY_POOL.detached_threads);
248         }
249     }
250
251     return (veto_cleanup);
252 }
253
254 /* Called on exit from main thread */
255 int
256 Perl_ithread_hook(pTHX)
257 {
258     dMY_POOL;
259     return ((aTHX == MY_POOL.main_thread.interp) ? S_exit_warning(aTHX) : 0);
260 }
261
262
263 /* MAGIC (in mg.h sense) hooks */
264
265 int
266 ithread_mg_get(pTHX_ SV *sv, MAGIC *mg)
267 {
268     ithread *thread = (ithread *)mg->mg_ptr;
269     SvIV_set(sv, PTR2IV(thread));
270     SvIOK_on(sv);
271     return (0);
272 }
273
274 int
275 ithread_mg_free(pTHX_ SV *sv, MAGIC *mg)
276 {
277     ithread *thread = (ithread *)mg->mg_ptr;
278
279     MUTEX_LOCK(&thread->mutex);
280     thread->count--;
281     MUTEX_UNLOCK(&thread->mutex);
282
283     /* Try to clean up thread */
284     S_ithread_destruct(aTHX_ thread);
285
286     return (0);
287 }
288
289 int
290 ithread_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *param)
291 {
292     ithread *thread = (ithread *)mg->mg_ptr;
293     MUTEX_LOCK(&thread->mutex);
294     thread->count++;
295     MUTEX_UNLOCK(&thread->mutex);
296     return (0);
297 }
298
299 MGVTBL ithread_vtbl = {
300     ithread_mg_get,     /* get */
301     0,                  /* set */
302     0,                  /* len */
303     0,                  /* clear */
304     ithread_mg_free,    /* free */
305     0,                  /* copy */
306     ithread_mg_dup      /* dup */
307 };
308
309
310 /* Provided default, minimum and rational stack sizes */
311 STATIC IV
312 S_good_stack_size(pTHX_ IV stack_size)
313 {
314     dMY_POOL;
315
316     /* Use default stack size if no stack size specified */
317     if (! stack_size) {
318         return (MY_POOL.default_stack_size);
319     }
320
321 #ifdef PTHREAD_STACK_MIN
322     /* Can't use less than minimum */
323     if (stack_size < PTHREAD_STACK_MIN) {
324         if (ckWARN(WARN_THREADS)) {
325             Perl_warn(aTHX_ "Using minimum thread stack size of %" IVdf, (IV)PTHREAD_STACK_MIN);
326         }
327         return (PTHREAD_STACK_MIN);
328     }
329 #endif
330
331     /* Round up to page size boundary */
332     if (MY_POOL.page_size <= 0) {
333 #if defined(HAS_SYSCONF) && (defined(_SC_PAGESIZE) || defined(_SC_MMAP_PAGE_SIZE))
334         SETERRNO(0, SS_NORMAL);
335 #  ifdef _SC_PAGESIZE
336         MY_POOL.page_size = sysconf(_SC_PAGESIZE);
337 #  else
338         MY_POOL.page_size = sysconf(_SC_MMAP_PAGE_SIZE);
339 #  endif
340         if ((long)MY_POOL.page_size < 0) {
341             if (errno) {
342                 SV * const error = get_sv("@", FALSE);
343                 (void)SvUPGRADE(error, SVt_PV);
344                 Perl_croak(aTHX_ "PANIC: sysconf: %s", SvPV_nolen(error));
345             } else {
346                 Perl_croak(aTHX_ "PANIC: sysconf: pagesize unknown");
347             }
348         }
349 #else
350 #  ifdef HAS_GETPAGESIZE
351         MY_POOL.page_size = getpagesize();
352 #  else
353 #    if defined(I_SYS_PARAM) && defined(PAGESIZE)
354         MY_POOL.page_size = PAGESIZE;
355 #    else
356         MY_POOL.page_size = 8192;   /* A conservative default */
357 #    endif
358 #  endif
359         if (MY_POOL.page_size <= 0) {
360             Perl_croak(aTHX_ "PANIC: bad pagesize %" IVdf, (IV)MY_POOL.page_size);
361         }
362 #endif
363     }
364     stack_size = ((stack_size + (MY_POOL.page_size - 1)) / MY_POOL.page_size) * MY_POOL.page_size;
365
366     return (stack_size);
367 }
368
369
370 /* Starts executing the thread.
371  * Passed as the C level function to run in the new thread.
372  */
373 #ifdef WIN32
374 STATIC THREAD_RET_TYPE
375 S_ithread_run(LPVOID arg)
376 #else
377 STATIC void *
378 S_ithread_run(void * arg)
379 #endif
380 {
381     ithread *thread = (ithread *)arg;
382     int jmp_rc = 0;
383     I32 oldscope;
384     int exit_app = 0;
385     int exit_code = 0;
386
387     dJMPENV;
388
389     dTHXa(thread->interp);
390
391     dMY_POOL;
392
393     /* Blocked until ->create() call finishes */
394     MUTEX_LOCK(&thread->mutex);
395     MUTEX_UNLOCK(&thread->mutex);
396
397     PERL_SET_CONTEXT(thread->interp);
398     S_ithread_set(aTHX_ thread);
399
400     PL_perl_destruct_level = 2;
401
402     {
403         AV *params = (AV *)SvRV(thread->params);
404         int len = (int)av_len(params)+1;
405         int ii;
406
407         dSP;
408         ENTER;
409         SAVETMPS;
410
411         /* Put args on the stack */
412         PUSHMARK(SP);
413         for (ii=0; ii < len; ii++) {
414             XPUSHs(av_shift(params));
415         }
416         PUTBACK;
417
418         oldscope = PL_scopestack_ix;
419         JMPENV_PUSH(jmp_rc);
420         if (jmp_rc == 0) {
421             /* Run the specified function */
422             len = (int)call_sv(thread->init_function, thread->gimme|G_EVAL);
423         } else if (jmp_rc == 2) {
424             /* Thread exited */
425             exit_app = 1;
426             exit_code = STATUS_CURRENT;
427             while (PL_scopestack_ix > oldscope) {
428                 LEAVE;
429             }
430         }
431         JMPENV_POP;
432
433         /* Remove args from stack and put back in params array */
434         SPAGAIN;
435         for (ii=len-1; ii >= 0; ii--) {
436             SV *sv = POPs;
437             if (jmp_rc == 0) {
438                 av_store(params, ii, SvREFCNT_inc(sv));
439             }
440         }
441
442         FREETMPS;
443         LEAVE;
444
445         /* Check for failure */
446         if (SvTRUE(ERRSV) && ckWARN_d(WARN_THREADS)) {
447             oldscope = PL_scopestack_ix;
448             JMPENV_PUSH(jmp_rc);
449             if (jmp_rc == 0) {
450                 /* Warn that thread died */
451                 Perl_warn(aTHX_ "Thread %" UVuf " terminated abnormally: %" SVf, thread->tid, ERRSV);
452             } else if (jmp_rc == 2) {
453                 /* Warn handler exited */
454                 exit_app = 1;
455                 exit_code = STATUS_CURRENT;
456                 while (PL_scopestack_ix > oldscope) {
457                     LEAVE;
458                 }
459             }
460             JMPENV_POP;
461         }
462
463         /* Release function ref */
464         SvREFCNT_dec(thread->init_function);
465         thread->init_function = Nullsv;
466     }
467
468     PerlIO_flush((PerlIO *)NULL);
469
470     MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
471     MUTEX_LOCK(&thread->mutex);
472     /* Mark as finished */
473     thread->state |= PERL_ITHR_FINISHED;
474     /* Clear exit flag if required */
475     if (thread->state & PERL_ITHR_THREAD_EXIT_ONLY) {
476         exit_app = 0;
477     }
478
479     /* Adjust thread status counts */
480     if (thread->state & PERL_ITHR_DETACHED) {
481         MY_POOL.detached_threads--;
482     } else {
483         MY_POOL.running_threads--;
484         MY_POOL.joinable_threads++;
485     }
486     MUTEX_UNLOCK(&thread->mutex);
487     MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
488
489     /* Exit application if required */
490     if (exit_app) {
491         oldscope = PL_scopestack_ix;
492         JMPENV_PUSH(jmp_rc);
493         if (jmp_rc == 0) {
494             /* Warn if there are unjoined threads */
495             S_exit_warning(aTHX);
496         } else if (jmp_rc == 2) {
497             /* Warn handler exited */
498             exit_code = STATUS_CURRENT;
499             while (PL_scopestack_ix > oldscope) {
500                 LEAVE;
501             }
502         }
503         JMPENV_POP;
504
505         my_exit(exit_code);
506     }
507
508     /* Try to clean up thread */
509     S_ithread_destruct(aTHX_ thread);
510
511 #ifdef WIN32
512     return ((DWORD)0);
513 #else
514     return (0);
515 #endif
516 }
517
518
519 /* Type conversion helper functions */
520
521 STATIC SV *
522 S_ithread_to_SV(pTHX_ SV *obj, ithread *thread, char *classname, bool inc)
523 {
524     SV *sv;
525     MAGIC *mg;
526
527     /* If incrementing thread ref count, then call within mutex lock */
528     if (inc) {
529         MUTEX_LOCK(&thread->mutex);
530         thread->count++;
531         MUTEX_UNLOCK(&thread->mutex);
532     }
533
534     if (! obj) {
535         obj = newSV(0);
536     }
537
538     sv = newSVrv(obj, classname);
539     sv_setiv(sv, PTR2IV(thread));
540     mg = sv_magicext(sv, Nullsv, PERL_MAGIC_shared_scalar, &ithread_vtbl, (char *)thread, 0);
541     mg->mg_flags |= MGf_DUP;
542     SvREADONLY_on(sv);
543
544     return (obj);
545 }
546
547 STATIC ithread *
548 S_SV_to_ithread(pTHX_ SV *sv)
549 {
550     /* Argument is a thread */
551     if (SvROK(sv)) {
552       return (INT2PTR(ithread *, SvIV(SvRV(sv))));
553     }
554     /* Argument is classname, therefore return current thread */
555     return (S_ithread_get(aTHX));
556 }
557
558
559 /* threads->create()
560  * Called in context of parent thread.
561  * Called with MY_POOL.create_destruct_mutex locked.  (Unlocked on error.)
562  */
563 STATIC ithread *
564 S_ithread_create(
565         pTHX_ SV *init_function,
566         IV        stack_size,
567         int       gimme,
568         int       exit_opt,
569         SV       *params)
570 {
571     ithread     *thread;
572     CLONE_PARAMS clone_param;
573     ithread     *current_thread = S_ithread_get(aTHX);
574
575     SV         **tmps_tmp = PL_tmps_stack;
576     IV           tmps_ix  = PL_tmps_ix;
577 #ifndef WIN32
578     int          rc_stack_size = 0;
579     int          rc_thread_create = 0;
580 #endif
581     dMY_POOL;
582
583     /* Allocate thread structure in context of the main thread's interpreter */
584     {
585         PERL_SET_CONTEXT(MY_POOL.main_thread.interp);
586         thread = (ithread *)PerlMemShared_malloc(sizeof(ithread));
587     }
588     PERL_SET_CONTEXT(aTHX);
589     if (!thread) {
590         MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
591         PerlLIO_write(PerlIO_fileno(Perl_error_log), PL_no_mem, strlen(PL_no_mem));
592         my_exit(1);
593     }
594     Zero(thread, 1, ithread);
595
596     /* Add to threads list */
597     thread->next = &MY_POOL.main_thread;
598     thread->prev = MY_POOL.main_thread.prev;
599     MY_POOL.main_thread.prev = thread;
600     thread->prev->next = thread;
601
602     /* Set count to 1 immediately in case thread exits before
603      * we return to caller!
604      */
605     thread->count = 1;
606
607     /* Block new thread until ->create() call finishes */
608     MUTEX_INIT(&thread->mutex);
609     MUTEX_LOCK(&thread->mutex);
610
611     thread->tid = MY_POOL.tid_counter++;
612     thread->stack_size = S_good_stack_size(aTHX_ stack_size);
613     thread->gimme = gimme;
614     thread->state = exit_opt;
615
616     /* "Clone" our interpreter into the thread's interpreter.
617      * This gives thread access to "static data" and code.
618      */
619     PerlIO_flush((PerlIO *)NULL);
620     S_ithread_set(aTHX_ thread);
621
622     SAVEBOOL(PL_srand_called); /* Save this so it becomes the correct value */
623     PL_srand_called = FALSE;   /* Set it to false so we can detect if it gets
624                                   set during the clone */
625
626 #ifdef WIN32
627     thread->interp = perl_clone(aTHX, CLONEf_KEEP_PTR_TABLE | CLONEf_CLONE_HOST);
628 #else
629     thread->interp = perl_clone(aTHX, CLONEf_KEEP_PTR_TABLE);
630 #endif
631
632     /* perl_clone() leaves us in new interpreter's context.  As it is tricky
633      * to spot an implicit aTHX, create a new scope with aTHX matching the
634      * context for the duration of our work for new interpreter.
635      */
636     {
637         dTHXa(thread->interp);
638
639         MY_CXT_CLONE;
640
641         /* Here we remove END blocks since they should only run in the thread
642          * they are created
643          */
644         SvREFCNT_dec(PL_endav);
645         PL_endav = newAV();
646
647         if (SvPOK(init_function)) {
648             thread->init_function = newSV(0);
649             sv_copypv(thread->init_function, init_function);
650         } else {
651             clone_param.flags = 0;
652             thread->init_function = sv_dup(init_function, &clone_param);
653             if (SvREFCNT(thread->init_function) == 0) {
654                 SvREFCNT_inc_void(thread->init_function);
655             }
656         }
657
658         thread->params = sv_dup(params, &clone_param);
659         SvREFCNT_inc_void(thread->params);
660
661         /* The code below checks that anything living on the tmps stack and
662          * has been cloned (so it lives in the ptr_table) has a refcount
663          * higher than 0.
664          *
665          * If the refcount is 0 it means that a something on the stack/context
666          * was holding a reference to it and since we init_stacks() in
667          * perl_clone that won't get cleaned and we will get a leaked scalar.
668          * The reason it was cloned was that it lived on the @_ stack.
669          *
670          * Example of this can be found in bugreport 15837 where calls in the
671          * parameter list end up as a temp.
672          *
673          * One could argue that this fix should be in perl_clone.
674          */
675         while (tmps_ix > 0) {
676             SV* sv = (SV*)ptr_table_fetch(PL_ptr_table, tmps_tmp[tmps_ix]);
677             tmps_ix--;
678             if (sv && SvREFCNT(sv) == 0) {
679                 SvREFCNT_inc_void(sv);
680                 SvREFCNT_dec(sv);
681             }
682         }
683
684         SvTEMP_off(thread->init_function);
685         ptr_table_free(PL_ptr_table);
686         PL_ptr_table = NULL;
687         PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
688     }
689     S_ithread_set(aTHX_ current_thread);
690     PERL_SET_CONTEXT(aTHX);
691
692     /* Create/start the thread */
693 #ifdef WIN32
694     thread->handle = CreateThread(NULL,
695                                   (DWORD)thread->stack_size,
696                                   S_ithread_run,
697                                   (LPVOID)thread,
698                                   STACK_SIZE_PARAM_IS_A_RESERVATION,
699                                   &thread->thr);
700 #else
701     {
702         STATIC pthread_attr_t attr;
703         STATIC int attr_inited = 0;
704         STATIC int attr_joinable = PTHREAD_CREATE_JOINABLE;
705         if (! attr_inited) {
706             pthread_attr_init(&attr);
707             attr_inited = 1;
708         }
709
710 #  ifdef PTHREAD_ATTR_SETDETACHSTATE
711         /* Threads start out joinable */
712         PTHREAD_ATTR_SETDETACHSTATE(&attr, attr_joinable);
713 #  endif
714
715 #  ifdef _POSIX_THREAD_ATTR_STACKSIZE
716         /* Set thread's stack size */
717         if (thread->stack_size > 0) {
718             rc_stack_size = pthread_attr_setstacksize(&attr, (size_t)thread->stack_size);
719         }
720 #  endif
721
722         /* Create the thread */
723         if (! rc_stack_size) {
724 #  ifdef OLD_PTHREADS_API
725             rc_thread_create = pthread_create(&thread->thr,
726                                               attr,
727                                               S_ithread_run,
728                                               (void *)thread);
729 #  else
730 #    if defined(HAS_PTHREAD_ATTR_SETSCOPE) && defined(PTHREAD_SCOPE_SYSTEM)
731             pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM);
732 #    endif
733             rc_thread_create = pthread_create(&thread->thr,
734                                               &attr,
735                                               S_ithread_run,
736                                               (void *)thread);
737 #  endif
738         }
739
740 #  ifdef _POSIX_THREAD_ATTR_STACKSIZE
741         /* Try to get thread's actual stack size */
742         {
743             size_t stacksize;
744 #ifdef HPUX1020
745             stacksize = pthread_attr_getstacksize(attr);
746 #else
747             if (! pthread_attr_getstacksize(&attr, &stacksize))
748 #endif
749                 if (stacksize > 0) {
750                     thread->stack_size = (IV)stacksize;
751                 }
752         }
753 #  endif
754     }
755 #endif
756
757     /* Check for errors */
758 #ifdef WIN32
759     if (thread->handle == NULL) {
760 #else
761     if (rc_stack_size || rc_thread_create) {
762 #endif
763         /* Must unlock mutex for destruct call */
764         MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
765         sv_2mortal(params);
766         thread->state |= PERL_ITHR_NONVIABLE;
767         S_ithread_destruct(aTHX_ thread);
768 #ifndef WIN32
769         if (ckWARN_d(WARN_THREADS)) {
770             if (rc_stack_size) {
771                 Perl_warn(aTHX_ "Thread creation failed: pthread_attr_setstacksize(%" IVdf ") returned %d", thread->stack_size, rc_stack_size);
772             } else {
773                 Perl_warn(aTHX_ "Thread creation failed: pthread_create returned %d", rc_thread_create);
774             }
775         }
776 #endif
777         return (NULL);
778     }
779
780     MY_POOL.running_threads++;
781     sv_2mortal(params);
782     return (thread);
783 }
784
785 #endif /* USE_ITHREADS */
786
787
788 MODULE = threads    PACKAGE = threads    PREFIX = ithread_
789 PROTOTYPES: DISABLE
790
791 #ifdef USE_ITHREADS
792
793 void
794 ithread_create(...)
795     PREINIT:
796         char *classname;
797         ithread *thread;
798         SV *function_to_call;
799         AV *params;
800         HV *specs;
801         IV stack_size;
802         int context;
803         int exit_opt;
804         SV *thread_exit_only;
805         char *str;
806         int idx;
807         int ii;
808         dMY_POOL;
809     CODE:
810         if ((items >= 2) && SvROK(ST(1)) && SvTYPE(SvRV(ST(1)))==SVt_PVHV) {
811             if (--items < 2) {
812                 Perl_croak(aTHX_ "Usage: threads->create(\\%specs, function, ...)");
813             }
814             specs = (HV*)SvRV(ST(1));
815             idx = 1;
816         } else {
817             if (items < 2) {
818                 Perl_croak(aTHX_ "Usage: threads->create(function, ...)");
819             }
820             specs = NULL;
821             idx = 0;
822         }
823
824         if (sv_isobject(ST(0))) {
825             /* $thr->create() */
826             classname = HvNAME(SvSTASH(SvRV(ST(0))));
827             thread = INT2PTR(ithread *, SvIV(SvRV(ST(0))));
828             stack_size = thread->stack_size;
829             exit_opt = thread->state & PERL_ITHR_THREAD_EXIT_ONLY;
830         } else {
831             /* threads->create() */
832             classname = (char *)SvPV_nolen(ST(0));
833             stack_size = MY_POOL.default_stack_size;
834             thread_exit_only = get_sv("threads::thread_exit_only", TRUE);
835             exit_opt = (SvTRUE(thread_exit_only))
836                                     ? PERL_ITHR_THREAD_EXIT_ONLY : 0;
837         }
838
839         function_to_call = ST(idx+1);
840
841         context = -1;
842         if (specs) {
843             /* stack_size */
844             if (hv_exists(specs, "stack", 5)) {
845                 stack_size = SvIV(*hv_fetch(specs, "stack", 5, 0));
846             } else if (hv_exists(specs, "stacksize", 9)) {
847                 stack_size = SvIV(*hv_fetch(specs, "stacksize", 9, 0));
848             } else if (hv_exists(specs, "stack_size", 10)) {
849                 stack_size = SvIV(*hv_fetch(specs, "stack_size", 10, 0));
850             }
851
852             /* context */
853             if (hv_exists(specs, "context", 7)) {
854                 str = (char *)SvPV_nolen(*hv_fetch(specs, "context", 7, 0));
855                 switch (*str) {
856                     case 'a':
857                     case 'A':
858                         context = G_ARRAY;
859                         break;
860                     case 's':
861                     case 'S':
862                         context = G_SCALAR;
863                         break;
864                     case 'v':
865                     case 'V':
866                         context = G_VOID;
867                         break;
868                     default:
869                         Perl_croak(aTHX_ "Invalid context: %s", str);
870                 }
871             } else if (hv_exists(specs, "array", 5)) {
872                 if (SvTRUE(*hv_fetch(specs, "array", 5, 0))) {
873                     context = G_ARRAY;
874                 }
875             } else if (hv_exists(specs, "scalar", 6)) {
876                 if (SvTRUE(*hv_fetch(specs, "scalar", 6, 0))) {
877                     context = G_SCALAR;
878                 }
879             } else if (hv_exists(specs, "void", 4)) {
880                 if (SvTRUE(*hv_fetch(specs, "void", 4, 0))) {
881                     context = G_VOID;
882                 }
883             }
884
885             /* exit => thread_only */
886             if (hv_exists(specs, "exit", 4)) {
887                 str = (char *)SvPV_nolen(*hv_fetch(specs, "exit", 4, 0));
888                 exit_opt = (*str == 't' || *str == 'T')
889                                     ? PERL_ITHR_THREAD_EXIT_ONLY : 0;
890             }
891         }
892         if (context == -1) {
893             context = GIMME_V;  /* Implicit context */
894         } else {
895             context |= (GIMME_V & (~(G_ARRAY|G_SCALAR|G_VOID)));
896         }
897
898         /* Function args */
899         params = newAV();
900         if (items > 2) {
901             for (ii=2; ii < items ; ii++) {
902                 av_push(params, SvREFCNT_inc(ST(idx+ii)));
903             }
904         }
905
906         /* Create thread */
907         MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
908         thread = S_ithread_create(aTHX_ function_to_call,
909                                         stack_size,
910                                         context,
911                                         exit_opt,
912                                         newRV_noinc((SV*)params));
913         if (! thread) {
914             XSRETURN_UNDEF;     /* Mutex already unlocked */
915         }
916         ST(0) = sv_2mortal(S_ithread_to_SV(aTHX_ Nullsv, thread, classname, FALSE));
917         MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
918
919         /* Let thread run */
920         MUTEX_UNLOCK(&thread->mutex);
921
922         /* XSRETURN(1); - implied */
923
924
925 void
926 ithread_list(...)
927     PREINIT:
928         char *classname;
929         ithread *thread;
930         int list_context;
931         IV count = 0;
932         int want_running;
933         dMY_POOL;
934     PPCODE:
935         /* Class method only */
936         if (SvROK(ST(0))) {
937             Perl_croak(aTHX_ "Usage: threads->list(...)");
938         }
939         classname = (char *)SvPV_nolen(ST(0));
940
941         /* Calling context */
942         list_context = (GIMME_V == G_ARRAY);
943
944         /* Running or joinable parameter */
945         if (items > 1) {
946             want_running = SvTRUE(ST(1));
947         }
948
949         /* Walk through threads list */
950         MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
951         for (thread = MY_POOL.main_thread.next;
952              thread != &MY_POOL.main_thread;
953              thread = thread->next)
954         {
955             /* Ignore detached or joined threads */
956             if (thread->state & (PERL_ITHR_DETACHED|PERL_ITHR_JOINED)) {
957                 continue;
958             }
959
960             /* Filter per parameter */
961             if (items > 1) {
962                 if (want_running) {
963                     if (thread->state & PERL_ITHR_FINISHED) {
964                         continue;   /* Not running */
965                     }
966                 } else {
967                     if (! (thread->state & PERL_ITHR_FINISHED)) {
968                         continue;   /* Still running - not joinable yet */
969                     }
970                 }
971             }
972
973             /* Push object on stack if list context */
974             if (list_context) {
975                 XPUSHs(sv_2mortal(S_ithread_to_SV(aTHX_ Nullsv, thread, classname, TRUE)));
976             }
977             count++;
978         }
979         MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
980         /* If scalar context, send back count */
981         if (! list_context) {
982             XSRETURN_IV(count);
983         }
984
985
986 void
987 ithread_self(...)
988     PREINIT:
989         char *classname;
990         ithread *thread;
991     CODE:
992         /* Class method only */
993         if (SvROK(ST(0))) {
994             Perl_croak(aTHX_ "Usage: threads->self()");
995         }
996         classname = (char *)SvPV_nolen(ST(0));
997
998         thread = S_ithread_get(aTHX);
999
1000         ST(0) = sv_2mortal(S_ithread_to_SV(aTHX_ Nullsv, thread, classname, TRUE));
1001         /* XSRETURN(1); - implied */
1002
1003
1004 void
1005 ithread_tid(...)
1006     PREINIT:
1007         ithread *thread;
1008     CODE:
1009         thread = S_SV_to_ithread(aTHX_ ST(0));
1010         XST_mUV(0, thread->tid);
1011         /* XSRETURN(1); - implied */
1012
1013
1014 void
1015 ithread_join(...)
1016     PREINIT:
1017         ithread *thread;
1018         int join_err;
1019         AV *params;
1020         int len;
1021         int ii;
1022 #ifdef WIN32
1023         DWORD waitcode;
1024 #else
1025         void *retval;
1026 #endif
1027         dMY_POOL;
1028     PPCODE:
1029         /* Object method only */
1030         if (! sv_isobject(ST(0))) {
1031             Perl_croak(aTHX_ "Usage: $thr->join()");
1032         }
1033
1034         /* Check if the thread is joinable */
1035         thread = S_SV_to_ithread(aTHX_ ST(0));
1036         join_err = (thread->state & (PERL_ITHR_DETACHED|PERL_ITHR_JOINED));
1037         if (join_err) {
1038             if (join_err & PERL_ITHR_DETACHED) {
1039                 Perl_croak(aTHX_ "Cannot join a detached thread");
1040             } else {
1041                 Perl_croak(aTHX_ "Thread already joined");
1042             }
1043         }
1044
1045         /* Join the thread */
1046 #ifdef WIN32
1047         waitcode = WaitForSingleObject(thread->handle, INFINITE);
1048 #else
1049         pthread_join(thread->thr, &retval);
1050 #endif
1051
1052         MUTEX_LOCK(&thread->mutex);
1053         /* Mark as joined */
1054         thread->state |= PERL_ITHR_JOINED;
1055
1056         /* Get the return value from the call_sv */
1057         {
1058             AV *params_copy;
1059             PerlInterpreter *other_perl;
1060             CLONE_PARAMS clone_params;
1061             ithread *current_thread;
1062
1063             params_copy = (AV *)SvRV(thread->params);
1064             other_perl = thread->interp;
1065             clone_params.stashes = newAV();
1066             clone_params.flags = CLONEf_JOIN_IN;
1067             PL_ptr_table = ptr_table_new();
1068             current_thread = S_ithread_get(aTHX);
1069             S_ithread_set(aTHX_ thread);
1070             /* Ensure 'meaningful' addresses retain their meaning */
1071             ptr_table_store(PL_ptr_table, &other_perl->Isv_undef, &PL_sv_undef);
1072             ptr_table_store(PL_ptr_table, &other_perl->Isv_no, &PL_sv_no);
1073             ptr_table_store(PL_ptr_table, &other_perl->Isv_yes, &PL_sv_yes);
1074             params = (AV *)sv_dup((SV*)params_copy, &clone_params);
1075             S_ithread_set(aTHX_ current_thread);
1076             SvREFCNT_dec(clone_params.stashes);
1077             SvREFCNT_inc_void(params);
1078             ptr_table_free(PL_ptr_table);
1079             PL_ptr_table = NULL;
1080         }
1081
1082         /* We are finished with the thread */
1083         S_ithread_clear(aTHX_ thread);
1084         MUTEX_UNLOCK(&thread->mutex);
1085
1086         MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
1087         if (! (thread->state & PERL_ITHR_DETACHED)) {
1088             MY_POOL.joinable_threads--;
1089         }
1090         MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
1091
1092         /* If no return values, then just return */
1093         if (! params) {
1094             XSRETURN_UNDEF;
1095         }
1096
1097         /* Put return values on stack */
1098         len = (int)AvFILL(params);
1099         for (ii=0; ii <= len; ii++) {
1100             SV* param = av_shift(params);
1101             XPUSHs(sv_2mortal(param));
1102         }
1103
1104         /* Free return value array */
1105         SvREFCNT_dec(params);
1106
1107
1108 void
1109 ithread_yield(...)
1110     CODE:
1111         YIELD;
1112
1113
1114 void
1115 ithread_detach(...)
1116     PREINIT:
1117         ithread *thread;
1118         int detach_err;
1119         int cleanup = 0;
1120         dMY_POOL;
1121     CODE:
1122         /* Check if the thread is detachable */
1123         thread = S_SV_to_ithread(aTHX_ ST(0));
1124         if ((detach_err = (thread->state & (PERL_ITHR_DETACHED|PERL_ITHR_JOINED)))) {
1125             if (detach_err & PERL_ITHR_DETACHED) {
1126                 Perl_croak(aTHX_ "Thread already detached");
1127             } else {
1128                 Perl_croak(aTHX_ "Cannot detach a joined thread");
1129             }
1130         }
1131
1132         /* Detach the thread */
1133         MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
1134         MUTEX_LOCK(&thread->mutex);
1135         thread->state |= PERL_ITHR_DETACHED;
1136 #ifdef WIN32
1137         /* Windows has no 'detach thread' function */
1138 #else
1139         PERL_THREAD_DETACH(thread->thr);
1140 #endif
1141
1142         if (thread->state & PERL_ITHR_FINISHED) {
1143             MY_POOL.joinable_threads--;
1144         } else {
1145             MY_POOL.running_threads--;
1146             MY_POOL.detached_threads++;
1147         }
1148         MUTEX_UNLOCK(&thread->mutex);
1149         MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
1150
1151         /* Try to cleanup thread */
1152         S_ithread_destruct(aTHX_ thread);
1153
1154
1155 void
1156 ithread_kill(...)
1157     PREINIT:
1158         ithread *thread;
1159         char *sig_name;
1160         IV signal;
1161     CODE:
1162         /* Must have safe signals */
1163         if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG) {
1164             Perl_croak(aTHX_ "Cannot signal threads without safe signals");
1165         }
1166
1167         /* Object method only */
1168         if (! sv_isobject(ST(0))) {
1169             Perl_croak(aTHX_ "Usage: $thr->kill('SIG...')");
1170         }
1171
1172         /* Get signal */
1173         sig_name = SvPV_nolen(ST(1));
1174         if (isALPHA(*sig_name)) {
1175             if (*sig_name == 'S' && sig_name[1] == 'I' && sig_name[2] == 'G') {
1176                 sig_name += 3;
1177             }
1178             if ((signal = whichsig(sig_name)) < 0) {
1179                 Perl_croak(aTHX_ "Unrecognized signal name: %s", sig_name);
1180             }
1181         } else {
1182             signal = SvIV(ST(1));
1183         }
1184
1185         /* Set the signal for the thread */
1186         thread = S_SV_to_ithread(aTHX_ ST(0));
1187         MUTEX_LOCK(&thread->mutex);
1188         if (thread->interp) {
1189             dTHXa(thread->interp);
1190             PL_psig_pend[signal]++;
1191             PL_sig_pending = 1;
1192         }
1193         MUTEX_UNLOCK(&thread->mutex);
1194
1195         /* Return the thread to allow for method chaining */
1196         ST(0) = ST(0);
1197         /* XSRETURN(1); - implied */
1198
1199
1200 void
1201 ithread_DESTROY(...)
1202     CODE:
1203         sv_unmagic(SvRV(ST(0)), PERL_MAGIC_shared_scalar);
1204
1205
1206 void
1207 ithread_equal(...)
1208     PREINIT:
1209         int are_equal = 0;
1210     CODE:
1211         /* Compares TIDs to determine thread equality */
1212         if (sv_isobject(ST(0)) && sv_isobject(ST(1))) {
1213             ithread *thr1 = INT2PTR(ithread *, SvIV(SvRV(ST(0))));
1214             ithread *thr2 = INT2PTR(ithread *, SvIV(SvRV(ST(1))));
1215             are_equal = (thr1->tid == thr2->tid);
1216         }
1217         if (are_equal) {
1218             XST_mYES(0);
1219         } else {
1220             /* Return 0 on false for backward compatibility */
1221             XST_mIV(0, 0);
1222         }
1223         /* XSRETURN(1); - implied */
1224
1225
1226 void
1227 ithread_object(...)
1228     PREINIT:
1229         char *classname;
1230         UV tid;
1231         ithread *thread;
1232         int have_obj = 0;
1233         dMY_POOL;
1234     CODE:
1235         /* Class method only */
1236         if (SvROK(ST(0))) {
1237             Perl_croak(aTHX_ "Usage: threads->object($tid)");
1238         }
1239         classname = (char *)SvPV_nolen(ST(0));
1240
1241         if ((items < 2) || ! SvOK(ST(1))) {
1242             XSRETURN_UNDEF;
1243         }
1244
1245         /* threads->object($tid) */
1246         tid = SvUV(ST(1));
1247
1248         /* Walk through threads list */
1249         MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
1250         for (thread = MY_POOL.main_thread.next;
1251              thread != &MY_POOL.main_thread;
1252              thread = thread->next)
1253         {
1254             /* Look for TID */
1255             if (thread->tid == tid) {
1256                 /* Ignore if detached or joined */
1257                 if (! (thread->state & (PERL_ITHR_DETACHED|PERL_ITHR_JOINED))) {
1258                     /* Put object on stack */
1259                     ST(0) = sv_2mortal(S_ithread_to_SV(aTHX_ Nullsv, thread, classname, TRUE));
1260                     have_obj = 1;
1261                 }
1262                 break;
1263             }
1264         }
1265         MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
1266
1267         if (! have_obj) {
1268             XSRETURN_UNDEF;
1269         }
1270         /* XSRETURN(1); - implied */
1271
1272
1273 void
1274 ithread__handle(...);
1275     PREINIT:
1276         ithread *thread;
1277     CODE:
1278         thread = S_SV_to_ithread(aTHX_ ST(0));
1279 #ifdef WIN32
1280         XST_mUV(0, PTR2UV(&thread->handle));
1281 #else
1282         XST_mUV(0, PTR2UV(&thread->thr));
1283 #endif
1284         /* XSRETURN(1); - implied */
1285
1286
1287 void
1288 ithread_get_stack_size(...)
1289     PREINIT:
1290         IV stack_size;
1291         dMY_POOL;
1292     CODE:
1293         if (sv_isobject(ST(0))) {
1294             /* $thr->get_stack_size() */
1295             ithread *thread = INT2PTR(ithread *, SvIV(SvRV(ST(0))));
1296             stack_size = thread->stack_size;
1297         } else {
1298             /* threads->get_stack_size() */
1299             stack_size = MY_POOL.default_stack_size;
1300         }
1301         XST_mIV(0, stack_size);
1302         /* XSRETURN(1); - implied */
1303
1304
1305 void
1306 ithread_set_stack_size(...)
1307     PREINIT:
1308         IV old_size;
1309         dMY_POOL;
1310     CODE:
1311         if (items != 2) {
1312             Perl_croak(aTHX_ "Usage: threads->set_stack_size($size)");
1313         }
1314         if (sv_isobject(ST(0))) {
1315             Perl_croak(aTHX_ "Cannot change stack size of an existing thread");
1316         }
1317
1318         old_size = MY_POOL.default_stack_size;
1319         MY_POOL.default_stack_size = S_good_stack_size(aTHX_ SvIV(ST(1)));
1320         XST_mIV(0, old_size);
1321         /* XSRETURN(1); - implied */
1322
1323
1324 void
1325 ithread_is_running(...)
1326     PREINIT:
1327         ithread *thread;
1328     CODE:
1329         /* Object method only */
1330         if (! sv_isobject(ST(0))) {
1331             Perl_croak(aTHX_ "Usage: $thr->is_running()");
1332         }
1333
1334         thread = INT2PTR(ithread *, SvIV(SvRV(ST(0))));
1335         ST(0) = (thread->state & PERL_ITHR_FINISHED) ? &PL_sv_no : &PL_sv_yes;
1336         /* XSRETURN(1); - implied */
1337
1338
1339 void
1340 ithread_is_detached(...)
1341     PREINIT:
1342         ithread *thread;
1343     CODE:
1344         thread = S_SV_to_ithread(aTHX_ ST(0));
1345         ST(0) = (thread->state & PERL_ITHR_DETACHED) ? &PL_sv_yes : &PL_sv_no;
1346         /* XSRETURN(1); - implied */
1347
1348
1349 void
1350 ithread_is_joinable(...)
1351     PREINIT:
1352         ithread *thread;
1353     CODE:
1354         /* Object method only */
1355         if (! sv_isobject(ST(0))) {
1356             Perl_croak(aTHX_ "Usage: $thr->is_joinable()");
1357         }
1358
1359         thread = INT2PTR(ithread *, SvIV(SvRV(ST(0))));
1360         MUTEX_LOCK(&thread->mutex);
1361         ST(0) = ((thread->state & PERL_ITHR_FINISHED) &&
1362                  ! (thread->state & (PERL_ITHR_DETACHED|PERL_ITHR_JOINED)))
1363             ? &PL_sv_yes : &PL_sv_no;
1364         MUTEX_UNLOCK(&thread->mutex);
1365         /* XSRETURN(1); - implied */
1366
1367
1368 void
1369 ithread_wantarray(...)
1370     PREINIT:
1371         ithread *thread;
1372     CODE:
1373         thread = S_SV_to_ithread(aTHX_ ST(0));
1374         ST(0) = (thread->gimme & G_ARRAY) ? &PL_sv_yes :
1375                 (thread->gimme & G_VOID)  ? &PL_sv_undef
1376                            /* G_SCALAR */ : &PL_sv_no;
1377         /* XSRETURN(1); - implied */
1378
1379
1380 void
1381 ithread_set_thread_exit_only(...)
1382     PREINIT:
1383         ithread *thread;
1384     CODE:
1385         if (items != 2) {
1386             Perl_croak(aTHX_ "Usage: ->set_thread_exit_only(boolean)");
1387         }
1388         thread = S_SV_to_ithread(aTHX_ ST(0));
1389         MUTEX_LOCK(&thread->mutex);
1390         if (SvTRUE(ST(1))) {
1391             thread->state |= PERL_ITHR_THREAD_EXIT_ONLY;
1392         } else {
1393             thread->state &= ~PERL_ITHR_THREAD_EXIT_ONLY;
1394         }
1395         MUTEX_UNLOCK(&thread->mutex);
1396
1397 #endif /* USE_ITHREADS */
1398
1399
1400 BOOT:
1401 {
1402 #ifdef USE_ITHREADS
1403     SV *my_pool_sv = *hv_fetch(PL_modglobal, MY_POOL_KEY,
1404                                sizeof(MY_POOL_KEY)-1, TRUE);
1405     my_pool_t *my_poolp = (my_pool_t*)SvPVX(newSV(sizeof(my_pool_t)-1));
1406
1407     MY_CXT_INIT;
1408
1409     Zero(my_poolp, 1, my_pool_t);
1410     sv_setuv(my_pool_sv, PTR2UV(my_poolp));
1411
1412     PL_perl_destruct_level = 2;
1413     MUTEX_INIT(&MY_POOL.create_destruct_mutex);
1414     MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
1415
1416     PL_threadhook = &Perl_ithread_hook;
1417
1418     MY_POOL.tid_counter = 1;
1419 #  ifdef THREAD_CREATE_NEEDS_STACK
1420     MY_POOL.default_stack_size = THREAD_CREATE_NEEDS_STACK;
1421 #  endif
1422
1423     /* The 'main' thread is thread 0.
1424      * It is detached (unjoinable) and immortal.
1425      */
1426
1427     MUTEX_INIT(&MY_POOL.main_thread.mutex);
1428
1429     /* Head of the threads list */
1430     MY_POOL.main_thread.next = &MY_POOL.main_thread;
1431     MY_POOL.main_thread.prev = &MY_POOL.main_thread;
1432
1433     MY_POOL.main_thread.count = 1;                  /* Immortal */
1434
1435     MY_POOL.main_thread.interp = aTHX;
1436     MY_POOL.main_thread.state = PERL_ITHR_DETACHED; /* Detached */
1437     MY_POOL.main_thread.stack_size = MY_POOL.default_stack_size;
1438 #  ifdef WIN32
1439     MY_POOL.main_thread.thr = GetCurrentThreadId();
1440 #  else
1441     MY_POOL.main_thread.thr = pthread_self();
1442 #  endif
1443
1444     S_ithread_set(aTHX_ &MY_POOL.main_thread);
1445     MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
1446 #endif /* USE_ITHREADS */
1447 }