1 #define PERL_NO_GET_CONTEXT
2 /* Workaround for mingw 32-bit compiler by mingw-w64.sf.net - has to come before any #include.
3 * It also defines USE_NO_MINGW_SETJMP_TWO_ARGS for the mingw.org 32-bit compilers ... but
4 * that's ok as that compiler makes no use of that symbol anyway */
5 #if defined(WIN32) && defined(__MINGW32__) && !defined(__MINGW64__)
6 # define USE_NO_MINGW_SETJMP_TWO_ARGS 1
11 /* Workaround for XSUB.h bug under WIN32 */
14 # if defined(USE_NO_MINGW_SETJMP_TWO_ARGS) || (!defined(__BORLANDC__) && !defined(__MINGW64__))
15 # define setjmp(x) _setjmp(x)
19 # define NEED_PL_signals
20 # define NEED_newRV_noinc
21 # define NEED_sv_2pv_flags
30 /* Supposed to be in Winbase.h */
31 # ifndef STACK_SIZE_PARAM_IS_A_RESERVATION
32 # define STACK_SIZE_PARAM_IS_A_RESERVATION 0x00010000
34 # include <win32thread.h>
37 typedef perl_os_thread pthread_t;
42 # define PERL_THREAD_SETSPECIFIC(k,v) pthread_setspecific(k,v)
43 # ifdef OLD_PTHREADS_API
44 # define PERL_THREAD_DETACH(t) pthread_detach(&(t))
46 # define PERL_THREAD_DETACH(t) pthread_detach((t))
49 #if !defined(HAS_GETPAGESIZE) && defined(I_SYS_PARAM)
50 # include <sys/param.h>
53 /* Values for 'state' member */
54 #define PERL_ITHR_DETACHED 1 /* Thread has been detached */
55 #define PERL_ITHR_JOINED 2 /* Thread is being / has been joined */
56 #define PERL_ITHR_FINISHED 4 /* Thread has finished execution */
57 #define PERL_ITHR_THREAD_EXIT_ONLY 8 /* exit() only exits current thread */
58 #define PERL_ITHR_NONVIABLE 16 /* Thread creation failed */
59 #define PERL_ITHR_DIED 32 /* Thread finished by dying */
61 #define PERL_ITHR_UNCALLABLE (PERL_ITHR_DETACHED|PERL_ITHR_JOINED)
64 typedef struct _ithread {
65 struct _ithread *next; /* Next thread in the list */
66 struct _ithread *prev; /* Prev thread in the list */
67 PerlInterpreter *interp; /* The threads interpreter */
68 UV tid; /* Threads module's thread id */
69 perl_mutex mutex; /* Mutex for updating things in this struct */
70 int count; /* Reference count. See S_ithread_create. */
71 int state; /* Detached, joined, finished, etc. */
72 int gimme; /* Context of create */
73 SV *init_function; /* Code to run */
74 AV *params; /* Args to pass function */
76 DWORD thr; /* OS's idea if thread id */
77 HANDLE handle; /* OS's waitable handle */
79 pthread_t thr; /* OS's handle for the thread */
82 SV *err; /* Error from abnormally terminated thread */
83 char *err_class; /* Error object's classname if applicable */
85 sigset_t initial_sigmask; /* Thread wakes up with signals blocked */
90 #define MY_CXT_KEY "threads::_cxt" XS_VERSION
93 /* Used by Perl interpreter for thread context switching */
100 #define MY_POOL_KEY "threads::_pool" XS_VERSION
103 /* Structure for 'main' thread
104 * Also forms the 'base' for the doubly-linked list of threads */
107 /* Protects the creation and destruction of threads*/
108 perl_mutex create_destruct_mutex;
115 IV default_stack_size;
120 SV *my_pool_sv = *hv_fetch(PL_modglobal, MY_POOL_KEY, \
121 sizeof(MY_POOL_KEY)-1, TRUE); \
122 my_pool_t *my_poolp = INT2PTR(my_pool_t*, SvUV(my_pool_sv))
124 #define MY_POOL (*my_poolp)
127 /* Block most signals for calling thread, setting the old signal mask to
128 * oldmask, if it is not NULL */
130 S_block_most_signals(sigset_t *oldmask)
134 sigfillset(&newmask);
135 /* Don't block certain "important" signals (stolen from mg.c) */
137 sigdelset(&newmask, SIGILL);
140 sigdelset(&newmask, SIGBUS);
143 sigdelset(&newmask, SIGSEGV);
147 /* no per-thread blocking available */
148 return sigprocmask(SIG_BLOCK, &newmask, oldmask);
150 return pthread_sigmask(SIG_BLOCK, &newmask, oldmask);
154 /* Set the signal mask for this thread to newmask */
156 S_set_sigmask(sigset_t *newmask)
159 return sigprocmask(SIG_SETMASK, newmask, NULL);
161 return pthread_sigmask(SIG_SETMASK, newmask, NULL);
166 /* Used by Perl interpreter for thread context switching */
168 S_ithread_set(pTHX_ ithread *thread)
171 MY_CXT.context = thread;
178 return (MY_CXT.context);
182 /* Free any data (such as the Perl interpreter) attached to an ithread
183 * structure. This is a bit like undef on SVs, where the SV isn't freed,
184 * but the PVX is. Must be called with thread->mutex already locked. Also,
185 * must be called with MY_POOL.create_destruct_mutex unlocked as destruction
186 * of the interpreter can lead to recursive destruction calls that could
187 * lead to a deadlock on that mutex.
190 S_ithread_clear(pTHX_ ithread *thread)
192 PerlInterpreter *interp;
197 assert(((thread->state & PERL_ITHR_FINISHED) &&
198 (thread->state & PERL_ITHR_UNCALLABLE))
200 (thread->state & PERL_ITHR_NONVIABLE));
203 /* We temporarily set the interpreter context to the interpreter being
204 * destroyed. It's in no condition to handle signals while it's being
207 S_block_most_signals(&origmask);
210 interp = thread->interp;
214 PERL_SET_CONTEXT(interp);
215 S_ithread_set(aTHX_ thread);
217 SvREFCNT_dec(thread->params);
218 thread->params = NULL;
221 SvREFCNT_dec(thread->err);
222 thread->err = Nullsv;
225 perl_destruct(interp);
227 thread->interp = NULL;
230 PERL_SET_CONTEXT(aTHX);
232 S_set_sigmask(&origmask);
237 /* Decrement the refcount of an ithread, and if it reaches zero, free it.
238 * Must be called with the mutex held.
239 * On return, mutex is released (or destroyed).
242 S_ithread_free(pTHX_ ithread *thread)
249 if (! (thread->state & PERL_ITHR_NONVIABLE)) {
250 assert(thread->count > 0);
251 if (--thread->count > 0) {
252 MUTEX_UNLOCK(&thread->mutex);
255 assert((thread->state & PERL_ITHR_FINISHED) &&
256 (thread->state & PERL_ITHR_UNCALLABLE));
258 MUTEX_UNLOCK(&thread->mutex);
260 /* Main thread (0) is immortal and should never get here */
261 assert(thread->tid != 0);
263 /* Remove from circular list of threads */
264 MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
265 assert(thread->prev && thread->next);
266 thread->next->prev = thread->prev;
267 thread->prev->next = thread->next;
270 MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
272 /* Thread is now disowned */
273 MUTEX_LOCK(&thread->mutex);
274 S_ithread_clear(aTHX_ thread);
277 handle = thread->handle;
278 thread->handle = NULL;
280 MUTEX_UNLOCK(&thread->mutex);
281 MUTEX_DESTROY(&thread->mutex);
289 PerlMemShared_free(thread);
291 /* total_threads >= 1 is used to veto cleanup by the main thread,
292 * should it happen to exit while other threads still exist.
293 * Decrement this as the very last thing in the thread's existence.
294 * Otherwise, MY_POOL and global state such as PL_op_mutex may get
295 * freed while we're still using it.
297 MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
298 MY_POOL.total_threads--;
299 MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
304 S_ithread_count_inc(pTHX_ ithread *thread)
306 MUTEX_LOCK(&thread->mutex);
308 MUTEX_UNLOCK(&thread->mutex);
312 /* Warn if exiting with any unjoined threads */
316 int veto_cleanup, warn;
319 MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
320 veto_cleanup = (MY_POOL.total_threads > 0);
321 warn = (MY_POOL.running_threads || MY_POOL.joinable_threads);
322 MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
325 if (ckWARN_d(WARN_THREADS)) {
326 Perl_warn(aTHX_ "Perl exited with active threads:\n\t%"
327 IVdf " running and unjoined\n\t%"
328 IVdf " finished and unjoined\n\t%"
329 IVdf " running and detached\n",
330 MY_POOL.running_threads,
331 MY_POOL.joinable_threads,
332 MY_POOL.detached_threads);
336 return (veto_cleanup);
340 /* Called from perl_destruct() in each thread. If it's the main thread,
341 * stop it from freeing everything if there are other threads still running.
344 Perl_ithread_hook(pTHX)
347 return ((aTHX == MY_POOL.main_thread.interp) ? S_exit_warning(aTHX) : 0);
351 /* MAGIC (in mg.h sense) hooks */
354 ithread_mg_get(pTHX_ SV *sv, MAGIC *mg)
356 ithread *thread = (ithread *)mg->mg_ptr;
357 SvIV_set(sv, PTR2IV(thread));
363 ithread_mg_free(pTHX_ SV *sv, MAGIC *mg)
365 ithread *thread = (ithread *)mg->mg_ptr;
366 MUTEX_LOCK(&thread->mutex);
367 S_ithread_free(aTHX_ thread); /* Releases MUTEX */
372 ithread_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *param)
374 S_ithread_count_inc(aTHX_ (ithread *)mg->mg_ptr);
378 MGVTBL ithread_vtbl = {
379 ithread_mg_get, /* get */
383 ithread_mg_free, /* free */
385 ithread_mg_dup /* dup */
389 /* Provided default, minimum and rational stack sizes */
391 S_good_stack_size(pTHX_ IV stack_size)
395 /* Use default stack size if no stack size specified */
397 return (MY_POOL.default_stack_size);
400 #ifdef PTHREAD_STACK_MIN
401 /* Can't use less than minimum */
402 if (stack_size < PTHREAD_STACK_MIN) {
403 if (ckWARN(WARN_THREADS)) {
404 Perl_warn(aTHX_ "Using minimum thread stack size of %" IVdf, (IV)PTHREAD_STACK_MIN);
406 return (PTHREAD_STACK_MIN);
410 /* Round up to page size boundary */
411 if (MY_POOL.page_size <= 0) {
412 #if defined(HAS_SYSCONF) && (defined(_SC_PAGESIZE) || defined(_SC_MMAP_PAGE_SIZE))
413 SETERRNO(0, SS_NORMAL);
415 MY_POOL.page_size = sysconf(_SC_PAGESIZE);
417 MY_POOL.page_size = sysconf(_SC_MMAP_PAGE_SIZE);
419 if ((long)MY_POOL.page_size < 0) {
421 SV * const error = get_sv("@", 0);
422 (void)SvUPGRADE(error, SVt_PV);
423 Perl_croak(aTHX_ "PANIC: sysconf: %s", SvPV_nolen(error));
425 Perl_croak(aTHX_ "PANIC: sysconf: pagesize unknown");
429 # ifdef HAS_GETPAGESIZE
430 MY_POOL.page_size = getpagesize();
432 # if defined(I_SYS_PARAM) && defined(PAGESIZE)
433 MY_POOL.page_size = PAGESIZE;
435 MY_POOL.page_size = 8192; /* A conservative default */
438 if (MY_POOL.page_size <= 0) {
439 Perl_croak(aTHX_ "PANIC: bad pagesize %" IVdf, (IV)MY_POOL.page_size);
443 stack_size = ((stack_size + (MY_POOL.page_size - 1)) / MY_POOL.page_size) * MY_POOL.page_size;
449 /* Starts executing the thread.
450 * Passed as the C level function to run in the new thread.
453 STATIC THREAD_RET_TYPE
454 S_ithread_run(LPVOID arg)
457 S_ithread_run(void * arg)
460 ithread *thread = (ithread *)arg;
463 int exit_app = 0; /* Thread terminated using 'exit' */
465 int died = 0; /* Thread terminated abnormally */
469 dTHXa(thread->interp);
473 /* Blocked until ->create() call finishes */
474 MUTEX_LOCK(&thread->mutex);
475 MUTEX_UNLOCK(&thread->mutex);
477 PERL_SET_CONTEXT(thread->interp);
478 S_ithread_set(aTHX_ thread);
481 /* Thread starts with most signals blocked - restore the signal mask from
482 * the ithread struct.
484 S_set_sigmask(&thread->initial_sigmask);
487 PL_perl_destruct_level = 2;
490 AV *params = thread->params;
491 int len = (int)av_len(params)+1;
498 /* Put args on the stack */
500 for (ii=0; ii < len; ii++) {
501 XPUSHs(av_shift(params));
505 oldscope = PL_scopestack_ix;
508 /* Run the specified function */
509 len = (int)call_sv(thread->init_function, thread->gimme|G_EVAL);
510 } else if (jmp_rc == 2) {
513 exit_code = STATUS_CURRENT;
514 while (PL_scopestack_ix > oldscope) {
521 /* The interpreter is finished, so this thread can stop receiving
522 * signals. This way, our signal handler doesn't get called in the
523 * middle of our parent thread calling perl_destruct()...
525 S_block_most_signals(NULL);
528 /* Remove args from stack and put back in params array */
530 for (ii=len-1; ii >= 0; ii--) {
532 if (jmp_rc == 0 && (thread->gimme & G_WANT) != G_VOID) {
533 av_store(params, ii, SvREFCNT_inc(sv));
540 /* Check for abnormal termination */
542 died = PERL_ITHR_DIED;
543 thread->err = newSVsv(ERRSV);
544 /* If ERRSV is an object, remember the classname and then
545 * rebless into 'main' so it will survive 'cloning'
547 if (sv_isobject(thread->err)) {
548 thread->err_class = HvNAME(SvSTASH(SvRV(thread->err)));
549 sv_bless(thread->err, gv_stashpv("main", 0));
552 if (ckWARN_d(WARN_THREADS)) {
553 oldscope = PL_scopestack_ix;
556 /* Warn that thread died */
557 Perl_warn(aTHX_ "Thread %" UVuf " terminated abnormally: %" SVf, thread->tid, ERRSV);
558 } else if (jmp_rc == 2) {
559 /* Warn handler exited */
561 exit_code = STATUS_CURRENT;
562 while (PL_scopestack_ix > oldscope) {
570 /* Release function ref */
571 SvREFCNT_dec(thread->init_function);
572 thread->init_function = Nullsv;
575 PerlIO_flush((PerlIO *)NULL);
577 MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
578 MUTEX_LOCK(&thread->mutex);
579 /* Mark as finished */
580 thread->state |= (PERL_ITHR_FINISHED | died);
581 /* Clear exit flag if required */
582 if (thread->state & PERL_ITHR_THREAD_EXIT_ONLY) {
586 /* Adjust thread status counts */
587 if (thread->state & PERL_ITHR_DETACHED) {
588 MY_POOL.detached_threads--;
590 MY_POOL.running_threads--;
591 MY_POOL.joinable_threads++;
593 MUTEX_UNLOCK(&thread->mutex);
594 MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
596 /* Exit application if required */
598 oldscope = PL_scopestack_ix;
601 /* Warn if there are unjoined threads */
602 S_exit_warning(aTHX);
603 } else if (jmp_rc == 2) {
604 /* Warn handler exited */
605 exit_code = STATUS_CURRENT;
606 while (PL_scopestack_ix > oldscope) {
615 /* At this point, the interpreter may have been freed, so call
616 * free in the the context of of the 'main' interpreter which
617 * can't have been freed due to the veto_cleanup mechanism.
619 aTHX = MY_POOL.main_thread.interp;
621 MUTEX_LOCK(&thread->mutex);
622 S_ithread_free(aTHX_ thread); /* Releases MUTEX */
632 /* Type conversion helper functions */
635 S_ithread_to_SV(pTHX_ SV *obj, ithread *thread, char *classname, bool inc)
641 S_ithread_count_inc(aTHX_ thread);
647 sv = newSVrv(obj, classname);
648 sv_setiv(sv, PTR2IV(thread));
649 mg = sv_magicext(sv, Nullsv, PERL_MAGIC_shared_scalar, &ithread_vtbl, (char *)thread, 0);
650 mg->mg_flags |= MGf_DUP;
657 S_SV_to_ithread(pTHX_ SV *sv)
659 /* Argument is a thread */
661 return (INT2PTR(ithread *, SvIV(SvRV(sv))));
663 /* Argument is classname, therefore return current thread */
664 return (S_ithread_get(aTHX));
669 * Called in context of parent thread.
670 * Called with MY_POOL.create_destruct_mutex locked. (Unlocked on error.)
674 pTHX_ SV *init_function,
682 ithread *current_thread = S_ithread_get(aTHX);
686 #if PERL_VERSION <= 8 && PERL_SUBVERSION <= 7
687 SV **tmps_tmp = PL_tmps_stack;
688 IV tmps_ix = PL_tmps_ix;
691 int rc_stack_size = 0;
692 int rc_thread_create = 0;
696 /* Allocate thread structure in context of the main thread's interpreter */
698 PERL_SET_CONTEXT(MY_POOL.main_thread.interp);
699 thread = (ithread *)PerlMemShared_malloc(sizeof(ithread));
701 PERL_SET_CONTEXT(aTHX);
703 MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
704 PerlLIO_write(PerlIO_fileno(Perl_error_log), PL_no_mem, strlen(PL_no_mem));
707 Zero(thread, 1, ithread);
709 /* Add to threads list */
710 thread->next = &MY_POOL.main_thread;
711 thread->prev = MY_POOL.main_thread.prev;
712 MY_POOL.main_thread.prev = thread;
713 thread->prev->next = thread;
714 MY_POOL.total_threads++;
716 /* 1 ref to be held by the local var 'thread' in S_ithread_run().
717 * 1 ref to be held by the threads object that we assume we will
718 * be embedded in upon our return.
719 * 1 ref to be the responsibility of join/detach, so we don't get
720 * freed until join/detach, even if no thread objects remain.
721 * This allows the following to work:
722 * { threads->create(sub{...}); } threads->object(1)->join;
726 /* Block new thread until ->create() call finishes */
727 MUTEX_INIT(&thread->mutex);
728 MUTEX_LOCK(&thread->mutex);
730 thread->tid = MY_POOL.tid_counter++;
731 thread->stack_size = S_good_stack_size(aTHX_ stack_size);
732 thread->gimme = gimme;
733 thread->state = exit_opt;
735 /* "Clone" our interpreter into the thread's interpreter.
736 * This gives thread access to "static data" and code.
738 PerlIO_flush((PerlIO *)NULL);
739 S_ithread_set(aTHX_ thread);
741 SAVEBOOL(PL_srand_called); /* Save this so it becomes the correct value */
742 PL_srand_called = FALSE; /* Set it to false so we can detect if it gets
743 set during the clone */
746 /* perl_clone() will leave us the new interpreter's context. This poses
747 * two problems for our signal handler. First, it sets the new context
748 * before the new interpreter struct is fully initialized, so our signal
749 * handler might find bogus data in the interpreter struct it gets.
750 * Second, even if the interpreter is initialized before a signal comes in,
751 * we would like to avoid that interpreter receiving notifications for
752 * signals (especially when they ought to be for the one running in this
753 * thread), until it is running in its own thread. Another problem is that
754 * the new thread will not have set the context until some time after it
755 * has started, so it won't be safe for our signal handler to run until
758 * So we block most signals here, so the new thread will inherit the signal
759 * mask, and unblock them right after the thread creation. The original
760 * mask is saved in the thread struct so that the new thread can restore
763 S_block_most_signals(&thread->initial_sigmask);
767 thread->interp = perl_clone(aTHX, CLONEf_KEEP_PTR_TABLE | CLONEf_CLONE_HOST);
769 thread->interp = perl_clone(aTHX, CLONEf_KEEP_PTR_TABLE);
772 /* perl_clone() leaves us in new interpreter's context. As it is tricky
773 * to spot an implicit aTHX, create a new scope with aTHX matching the
774 * context for the duration of our work for new interpreter.
777 #if (PERL_VERSION < 13) || (PERL_VERSION == 13 && PERL_SUBVERSION <= 1)
778 CLONE_PARAMS clone_param;
780 dTHXa(thread->interp);
784 /* Here we remove END blocks since they should only run in the thread
787 SvREFCNT_dec(PL_endav);
790 clone_param.flags = 0;
791 if (SvPOK(init_function)) {
792 thread->init_function = newSV(0);
793 sv_copypv(thread->init_function, init_function);
795 thread->init_function =
796 SvREFCNT_inc(sv_dup(init_function, &clone_param));
799 thread->params = params = newAV();
800 av_extend(params, params_end - params_start - 1);
801 AvFILLp(params) = params_end - params_start - 1;
802 array = AvARRAY(params);
803 while (params_start < params_end) {
804 *array++ = SvREFCNT_inc(sv_dup(*params_start++, &clone_param));
807 CLONE_PARAMS *clone_param = Perl_clone_params_new(aTHX, thread->interp);
809 dTHXa(thread->interp);
813 /* Here we remove END blocks since they should only run in the thread
816 SvREFCNT_dec(PL_endav);
819 if (SvPOK(init_function)) {
820 thread->init_function = newSV(0);
821 sv_copypv(thread->init_function, init_function);
823 thread->init_function = sv_dup_inc(init_function, clone_param);
826 thread->params = params = newAV();
827 av_extend(params, params_end - params_start - 1);
828 AvFILLp(params) = params_end - params_start - 1;
829 array = AvARRAY(params);
830 while (params_start < params_end) {
831 *array++ = SvREFCNT_inc(sv_dup(*params_start++, clone_param));
833 Perl_clone_params_del(clone_param);
836 #if PERL_VERSION <= 8 && PERL_SUBVERSION <= 7
837 /* The code below checks that anything living on the tmps stack and
838 * has been cloned (so it lives in the ptr_table) has a refcount
841 * If the refcount is 0 it means that a something on the stack/context
842 * was holding a reference to it and since we init_stacks() in
843 * perl_clone that won't get cleaned and we will get a leaked scalar.
844 * The reason it was cloned was that it lived on the @_ stack.
846 * Example of this can be found in bugreport 15837 where calls in the
847 * parameter list end up as a temp.
849 * As of 5.8.8 this is done in perl_clone.
851 while (tmps_ix > 0) {
852 SV* sv = (SV*)ptr_table_fetch(PL_ptr_table, tmps_tmp[tmps_ix]);
854 if (sv && SvREFCNT(sv) == 0) {
855 SvREFCNT_inc_void(sv);
861 SvTEMP_off(thread->init_function);
862 ptr_table_free(PL_ptr_table);
864 PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
866 S_ithread_set(aTHX_ current_thread);
867 PERL_SET_CONTEXT(aTHX);
869 /* Create/start the thread */
871 thread->handle = CreateThread(NULL,
872 (DWORD)thread->stack_size,
875 STACK_SIZE_PARAM_IS_A_RESERVATION,
879 STATIC pthread_attr_t attr;
880 STATIC int attr_inited = 0;
881 STATIC int attr_joinable = PTHREAD_CREATE_JOINABLE;
883 pthread_attr_init(&attr);
887 # ifdef PTHREAD_ATTR_SETDETACHSTATE
888 /* Threads start out joinable */
889 PTHREAD_ATTR_SETDETACHSTATE(&attr, attr_joinable);
892 # ifdef _POSIX_THREAD_ATTR_STACKSIZE
893 /* Set thread's stack size */
894 if (thread->stack_size > 0) {
895 rc_stack_size = pthread_attr_setstacksize(&attr, (size_t)thread->stack_size);
899 /* Create the thread */
900 if (! rc_stack_size) {
901 # ifdef OLD_PTHREADS_API
902 rc_thread_create = pthread_create(&thread->thr,
907 # if defined(HAS_PTHREAD_ATTR_SETSCOPE) && defined(PTHREAD_SCOPE_SYSTEM)
908 pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM);
910 rc_thread_create = pthread_create(&thread->thr,
918 /* Now it's safe to accept signals, since we're in our own interpreter's
919 * context and we have created the thread.
921 S_set_sigmask(&thread->initial_sigmask);
924 # ifdef _POSIX_THREAD_ATTR_STACKSIZE
925 /* Try to get thread's actual stack size */
929 stacksize = pthread_attr_getstacksize(attr);
931 if (! pthread_attr_getstacksize(&attr, &stacksize))
934 thread->stack_size = (IV)stacksize;
941 /* Check for errors */
943 if (thread->handle == NULL) {
945 if (rc_stack_size || rc_thread_create) {
947 /* Must unlock mutex for destruct call */
948 MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
949 thread->state |= PERL_ITHR_NONVIABLE;
950 S_ithread_free(aTHX_ thread); /* Releases MUTEX */
952 if (ckWARN_d(WARN_THREADS)) {
954 Perl_warn(aTHX_ "Thread creation failed: pthread_attr_setstacksize(%" IVdf ") returned %d", thread->stack_size, rc_stack_size);
956 Perl_warn(aTHX_ "Thread creation failed: pthread_create returned %d", rc_thread_create);
963 MY_POOL.running_threads++;
967 #endif /* USE_ITHREADS */
970 MODULE = threads PACKAGE = threads PREFIX = ithread_
980 SV *function_to_call;
985 SV *thread_exit_only;
992 if ((items >= 2) && SvROK(ST(1)) && SvTYPE(SvRV(ST(1)))==SVt_PVHV) {
994 Perl_croak(aTHX_ "Usage: threads->create(\\%%specs, function, ...)");
996 specs = (HV*)SvRV(ST(1));
1000 Perl_croak(aTHX_ "Usage: threads->create(function, ...)");
1006 if (sv_isobject(ST(0))) {
1007 /* $thr->create() */
1008 classname = HvNAME(SvSTASH(SvRV(ST(0))));
1009 thread = INT2PTR(ithread *, SvIV(SvRV(ST(0))));
1010 MUTEX_LOCK(&thread->mutex);
1011 stack_size = thread->stack_size;
1012 exit_opt = thread->state & PERL_ITHR_THREAD_EXIT_ONLY;
1013 MUTEX_UNLOCK(&thread->mutex);
1015 /* threads->create() */
1016 classname = (char *)SvPV_nolen(ST(0));
1017 stack_size = MY_POOL.default_stack_size;
1018 thread_exit_only = get_sv("threads::thread_exit_only", GV_ADD);
1019 exit_opt = (SvTRUE(thread_exit_only))
1020 ? PERL_ITHR_THREAD_EXIT_ONLY : 0;
1023 function_to_call = ST(idx+1);
1029 if ((svp = hv_fetch(specs, "stack", 5, 0))) {
1030 stack_size = SvIV(*svp);
1031 } else if ((svp = hv_fetch(specs, "stacksize", 9, 0))) {
1032 stack_size = SvIV(*svp);
1033 } else if ((svp = hv_fetch(specs, "stack_size", 10, 0))) {
1034 stack_size = SvIV(*svp);
1038 if ((svp = hv_fetch(specs, "context", 7, 0))) {
1039 str = (char *)SvPV_nolen(*svp);
1056 Perl_croak(aTHX_ "Invalid context: %s", str);
1058 } else if ((svp = hv_fetch(specs, "array", 5, 0))) {
1062 } else if ((svp = hv_fetch(specs, "list", 4, 0))) {
1066 } else if ((svp = hv_fetch(specs, "scalar", 6, 0))) {
1070 } else if ((svp = hv_fetch(specs, "void", 4, 0))) {
1076 /* exit => thread_only */
1077 if ((svp = hv_fetch(specs, "exit", 4, 0))) {
1078 str = (char *)SvPV_nolen(*svp);
1079 exit_opt = (*str == 't' || *str == 'T')
1080 ? PERL_ITHR_THREAD_EXIT_ONLY : 0;
1083 if (context == -1) {
1084 context = GIMME_V; /* Implicit context */
1086 context |= (GIMME_V & (~(G_ARRAY|G_SCALAR|G_VOID)));
1090 args_start = &ST(idx + 2);
1092 args_end = &ST(idx + items);
1094 args_end = args_start;
1098 MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
1099 thread = S_ithread_create(aTHX_ function_to_call,
1106 XSRETURN_UNDEF; /* Mutex already unlocked */
1108 ST(0) = sv_2mortal(S_ithread_to_SV(aTHX_ Nullsv, thread, classname, FALSE));
1109 MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
1111 /* Let thread run */
1112 MUTEX_UNLOCK(&thread->mutex);
1114 /* XSRETURN(1); - implied */
1124 int want_running = 0;
1128 /* Class method only */
1130 Perl_croak(aTHX_ "Usage: threads->list(...)");
1132 classname = (char *)SvPV_nolen(ST(0));
1134 /* Calling context */
1135 list_context = (GIMME_V == G_ARRAY);
1137 /* Running or joinable parameter */
1139 want_running = SvTRUE(ST(1));
1142 /* Walk through threads list */
1143 MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
1144 for (thread = MY_POOL.main_thread.next;
1145 thread != &MY_POOL.main_thread;
1146 thread = thread->next)
1148 MUTEX_LOCK(&thread->mutex);
1149 state = thread->state;
1150 MUTEX_UNLOCK(&thread->mutex);
1152 /* Ignore detached or joined threads */
1153 if (state & PERL_ITHR_UNCALLABLE) {
1157 /* Filter per parameter */
1160 if (state & PERL_ITHR_FINISHED) {
1161 continue; /* Not running */
1164 if (! (state & PERL_ITHR_FINISHED)) {
1165 continue; /* Still running - not joinable yet */
1170 /* Push object on stack if list context */
1172 XPUSHs(sv_2mortal(S_ithread_to_SV(aTHX_ Nullsv, thread, classname, TRUE)));
1176 MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
1177 /* If scalar context, send back count */
1178 if (! list_context) {
1189 /* Class method only */
1190 if ((items != 1) || SvROK(ST(0))) {
1191 Perl_croak(aTHX_ "Usage: threads->self()");
1193 classname = (char *)SvPV_nolen(ST(0));
1195 thread = S_ithread_get(aTHX);
1197 ST(0) = sv_2mortal(S_ithread_to_SV(aTHX_ Nullsv, thread, classname, TRUE));
1198 /* XSRETURN(1); - implied */
1206 PERL_UNUSED_VAR(items);
1207 thread = S_SV_to_ithread(aTHX_ ST(0));
1208 XST_mUV(0, thread->tid);
1209 /* XSRETURN(1); - implied */
1216 ithread *current_thread;
1227 /* Object method only */
1228 if ((items != 1) || ! sv_isobject(ST(0))) {
1229 Perl_croak(aTHX_ "Usage: $thr->join()");
1232 /* Check if the thread is joinable and not ourselves */
1233 thread = S_SV_to_ithread(aTHX_ ST(0));
1234 current_thread = S_ithread_get(aTHX);
1236 MUTEX_LOCK(&thread->mutex);
1237 if ((join_err = (thread->state & PERL_ITHR_UNCALLABLE))) {
1238 MUTEX_UNLOCK(&thread->mutex);
1239 Perl_croak(aTHX_ (join_err & PERL_ITHR_DETACHED)
1240 ? "Cannot join a detached thread"
1241 : "Thread already joined");
1242 } else if (thread->tid == current_thread->tid) {
1243 MUTEX_UNLOCK(&thread->mutex);
1244 Perl_croak(aTHX_ "Cannot join self");
1247 /* Mark as joined */
1248 thread->state |= PERL_ITHR_JOINED;
1249 MUTEX_UNLOCK(&thread->mutex);
1251 MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
1252 MY_POOL.joinable_threads--;
1253 MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
1255 /* Join the thread */
1257 if (WaitForSingleObject(thread->handle, INFINITE) != WAIT_OBJECT_0) {
1258 /* Timeout/abandonment unexpected here; check $^E */
1259 Perl_croak(aTHX_ "PANIC: underlying join failed");
1262 if ((rc_join = pthread_join(thread->thr, &retval)) != 0) {
1263 /* In progress/deadlock/unknown unexpected here; check $! */
1265 Perl_croak(aTHX_ "PANIC: underlying join failed");
1269 MUTEX_LOCK(&thread->mutex);
1270 /* Get the return value from the call_sv */
1271 /* Objects do not survive this process - FIXME */
1272 if ((thread->gimme & G_WANT) != G_VOID) {
1273 #if (PERL_VERSION < 13) || (PERL_VERSION == 13 && PERL_SUBVERSION <= 1)
1275 PerlInterpreter *other_perl;
1276 CLONE_PARAMS clone_params;
1278 params_copy = thread->params;
1279 other_perl = thread->interp;
1280 clone_params.stashes = newAV();
1281 clone_params.flags = CLONEf_JOIN_IN;
1282 PL_ptr_table = ptr_table_new();
1283 S_ithread_set(aTHX_ thread);
1284 /* Ensure 'meaningful' addresses retain their meaning */
1285 ptr_table_store(PL_ptr_table, &other_perl->Isv_undef, &PL_sv_undef);
1286 ptr_table_store(PL_ptr_table, &other_perl->Isv_no, &PL_sv_no);
1287 ptr_table_store(PL_ptr_table, &other_perl->Isv_yes, &PL_sv_yes);
1288 params = (AV *)sv_dup((SV*)params_copy, &clone_params);
1289 S_ithread_set(aTHX_ current_thread);
1290 SvREFCNT_dec(clone_params.stashes);
1291 SvREFCNT_inc_void(params);
1292 ptr_table_free(PL_ptr_table);
1293 PL_ptr_table = NULL;
1296 PerlInterpreter *other_perl = thread->interp;
1297 CLONE_PARAMS *clone_params = Perl_clone_params_new(other_perl, aTHX);
1299 params_copy = thread->params;
1300 clone_params->flags |= CLONEf_JOIN_IN;
1301 PL_ptr_table = ptr_table_new();
1302 S_ithread_set(aTHX_ thread);
1303 /* Ensure 'meaningful' addresses retain their meaning */
1304 ptr_table_store(PL_ptr_table, &other_perl->Isv_undef, &PL_sv_undef);
1305 ptr_table_store(PL_ptr_table, &other_perl->Isv_no, &PL_sv_no);
1306 ptr_table_store(PL_ptr_table, &other_perl->Isv_yes, &PL_sv_yes);
1307 params = (AV *)sv_dup((SV*)params_copy, clone_params);
1308 S_ithread_set(aTHX_ current_thread);
1309 Perl_clone_params_del(clone_params);
1310 SvREFCNT_inc_void(params);
1311 ptr_table_free(PL_ptr_table);
1312 PL_ptr_table = NULL;
1316 /* If thread didn't die, then we can free its interpreter */
1317 if (! (thread->state & PERL_ITHR_DIED)) {
1318 S_ithread_clear(aTHX_ thread);
1320 S_ithread_free(aTHX_ thread); /* Releases MUTEX */
1322 /* If no return values, then just return */
1327 /* Put return values on stack */
1328 len = (int)AvFILL(params);
1329 for (ii=0; ii <= len; ii++) {
1330 SV* param = av_shift(params);
1331 XPUSHs(sv_2mortal(param));
1334 /* Free return value array */
1335 SvREFCNT_dec(params);
1341 PERL_UNUSED_VAR(items);
1352 PERL_UNUSED_VAR(items);
1354 /* Detach the thread */
1355 thread = S_SV_to_ithread(aTHX_ ST(0));
1356 MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
1357 MUTEX_LOCK(&thread->mutex);
1358 if (! (detach_err = (thread->state & PERL_ITHR_UNCALLABLE))) {
1359 /* Thread is detachable */
1360 thread->state |= PERL_ITHR_DETACHED;
1362 /* Windows has no 'detach thread' function */
1364 PERL_THREAD_DETACH(thread->thr);
1366 if (thread->state & PERL_ITHR_FINISHED) {
1367 MY_POOL.joinable_threads--;
1369 MY_POOL.running_threads--;
1370 MY_POOL.detached_threads++;
1373 MUTEX_UNLOCK(&thread->mutex);
1374 MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
1377 Perl_croak(aTHX_ (detach_err & PERL_ITHR_DETACHED)
1378 ? "Thread already detached"
1379 : "Cannot detach a joined thread");
1382 /* If thread is finished and didn't die,
1383 * then we can free its interpreter */
1384 MUTEX_LOCK(&thread->mutex);
1385 if ((thread->state & PERL_ITHR_FINISHED) &&
1386 ! (thread->state & PERL_ITHR_DIED))
1388 S_ithread_clear(aTHX_ thread);
1390 S_ithread_free(aTHX_ thread); /* Releases MUTEX */
1401 /* Must have safe signals */
1402 if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG) {
1403 Perl_croak(aTHX_ "Cannot signal threads without safe signals");
1406 /* Object method only */
1407 if ((items != 2) || ! sv_isobject(ST(0))) {
1408 Perl_croak(aTHX_ "Usage: $thr->kill('SIG...')");
1412 sig_name = SvPV_nolen(ST(1));
1413 if (isALPHA(*sig_name)) {
1414 if (*sig_name == 'S' && sig_name[1] == 'I' && sig_name[2] == 'G') {
1417 if ((signal = whichsig(sig_name)) < 0) {
1418 Perl_croak(aTHX_ "Unrecognized signal name: %s", sig_name);
1421 signal = SvIV(ST(1));
1424 /* Set the signal for the thread */
1425 thread = S_SV_to_ithread(aTHX_ ST(0));
1426 MUTEX_LOCK(&thread->mutex);
1427 if (thread->interp) {
1428 dTHXa(thread->interp);
1429 if (PL_psig_pend && PL_psig_ptr[signal]) {
1430 PL_psig_pend[signal]++;
1435 /* Ignore signal to terminated thread */
1438 MUTEX_UNLOCK(&thread->mutex);
1441 Perl_croak(aTHX_ "Signal %s received in thread %"UVuf", but no signal handler set.", sig_name, thread->tid);
1444 /* Return the thread to allow for method chaining */
1446 /* XSRETURN(1); - implied */
1450 ithread_DESTROY(...)
1452 PERL_UNUSED_VAR(items);
1453 sv_unmagic(SvRV(ST(0)), PERL_MAGIC_shared_scalar);
1461 PERL_UNUSED_VAR(items);
1463 /* Compares TIDs to determine thread equality */
1464 if (sv_isobject(ST(0)) && sv_isobject(ST(1))) {
1465 ithread *thr1 = INT2PTR(ithread *, SvIV(SvRV(ST(0))));
1466 ithread *thr2 = INT2PTR(ithread *, SvIV(SvRV(ST(1))));
1467 are_equal = (thr1->tid == thr2->tid);
1472 /* Return 0 on false for backward compatibility */
1475 /* XSRETURN(1); - implied */
1489 /* Class method only */
1491 Perl_croak(aTHX_ "Usage: threads->object($tid)");
1493 classname = (char *)SvPV_nolen(ST(0));
1495 /* Turn $tid from PVLV to SV if needed (bug #73330) */
1499 if ((items < 2) || ! SvOK(arg)) {
1503 /* threads->object($tid) */
1506 /* If current thread wants its own object, then behave the same as
1508 thread = S_ithread_get(aTHX);
1509 if (thread->tid == tid) {
1510 ST(0) = sv_2mortal(S_ithread_to_SV(aTHX_ Nullsv, thread, classname, TRUE));
1514 /* Walk through threads list */
1515 MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
1516 for (thread = MY_POOL.main_thread.next;
1517 thread != &MY_POOL.main_thread;
1518 thread = thread->next)
1521 if (thread->tid == tid) {
1522 /* Ignore if detached or joined */
1523 MUTEX_LOCK(&thread->mutex);
1524 state = thread->state;
1525 MUTEX_UNLOCK(&thread->mutex);
1526 if (! (state & PERL_ITHR_UNCALLABLE)) {
1527 /* Put object on stack */
1528 ST(0) = sv_2mortal(S_ithread_to_SV(aTHX_ Nullsv, thread, classname, TRUE));
1534 MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
1540 /* XSRETURN(1); - implied */
1544 ithread__handle(...);
1548 PERL_UNUSED_VAR(items);
1549 thread = S_SV_to_ithread(aTHX_ ST(0));
1551 XST_mUV(0, PTR2UV(&thread->handle));
1553 XST_mUV(0, PTR2UV(&thread->thr));
1555 /* XSRETURN(1); - implied */
1559 ithread_get_stack_size(...)
1564 PERL_UNUSED_VAR(items);
1565 if (sv_isobject(ST(0))) {
1566 /* $thr->get_stack_size() */
1567 ithread *thread = INT2PTR(ithread *, SvIV(SvRV(ST(0))));
1568 stack_size = thread->stack_size;
1570 /* threads->get_stack_size() */
1571 stack_size = MY_POOL.default_stack_size;
1573 XST_mIV(0, stack_size);
1574 /* XSRETURN(1); - implied */
1578 ithread_set_stack_size(...)
1584 Perl_croak(aTHX_ "Usage: threads->set_stack_size($size)");
1586 if (sv_isobject(ST(0))) {
1587 Perl_croak(aTHX_ "Cannot change stack size of an existing thread");
1589 if (! looks_like_number(ST(1))) {
1590 Perl_croak(aTHX_ "Stack size must be numeric");
1593 old_size = MY_POOL.default_stack_size;
1594 MY_POOL.default_stack_size = S_good_stack_size(aTHX_ SvIV(ST(1)));
1595 XST_mIV(0, old_size);
1596 /* XSRETURN(1); - implied */
1600 ithread_is_running(...)
1604 /* Object method only */
1605 if ((items != 1) || ! sv_isobject(ST(0))) {
1606 Perl_croak(aTHX_ "Usage: $thr->is_running()");
1609 thread = INT2PTR(ithread *, SvIV(SvRV(ST(0))));
1610 MUTEX_LOCK(&thread->mutex);
1611 ST(0) = (thread->state & PERL_ITHR_FINISHED) ? &PL_sv_no : &PL_sv_yes;
1612 MUTEX_UNLOCK(&thread->mutex);
1613 /* XSRETURN(1); - implied */
1617 ithread_is_detached(...)
1621 PERL_UNUSED_VAR(items);
1622 thread = S_SV_to_ithread(aTHX_ ST(0));
1623 MUTEX_LOCK(&thread->mutex);
1624 ST(0) = (thread->state & PERL_ITHR_DETACHED) ? &PL_sv_yes : &PL_sv_no;
1625 MUTEX_UNLOCK(&thread->mutex);
1626 /* XSRETURN(1); - implied */
1630 ithread_is_joinable(...)
1634 /* Object method only */
1635 if ((items != 1) || ! sv_isobject(ST(0))) {
1636 Perl_croak(aTHX_ "Usage: $thr->is_joinable()");
1639 thread = INT2PTR(ithread *, SvIV(SvRV(ST(0))));
1640 MUTEX_LOCK(&thread->mutex);
1641 ST(0) = ((thread->state & PERL_ITHR_FINISHED) &&
1642 ! (thread->state & PERL_ITHR_UNCALLABLE))
1643 ? &PL_sv_yes : &PL_sv_no;
1644 MUTEX_UNLOCK(&thread->mutex);
1645 /* XSRETURN(1); - implied */
1649 ithread_wantarray(...)
1653 PERL_UNUSED_VAR(items);
1654 thread = S_SV_to_ithread(aTHX_ ST(0));
1655 ST(0) = ((thread->gimme & G_WANT) == G_ARRAY) ? &PL_sv_yes :
1656 ((thread->gimme & G_WANT) == G_VOID) ? &PL_sv_undef
1657 /* G_SCALAR */ : &PL_sv_no;
1658 /* XSRETURN(1); - implied */
1662 ithread_set_thread_exit_only(...)
1667 Perl_croak(aTHX_ "Usage: ->set_thread_exit_only(boolean)");
1669 thread = S_SV_to_ithread(aTHX_ ST(0));
1670 MUTEX_LOCK(&thread->mutex);
1671 if (SvTRUE(ST(1))) {
1672 thread->state |= PERL_ITHR_THREAD_EXIT_ONLY;
1674 thread->state &= ~PERL_ITHR_THREAD_EXIT_ONLY;
1676 MUTEX_UNLOCK(&thread->mutex);
1685 /* Object method only */
1686 if ((items != 1) || ! sv_isobject(ST(0))) {
1687 Perl_croak(aTHX_ "Usage: $thr->err()");
1690 thread = INT2PTR(ithread *, SvIV(SvRV(ST(0))));
1691 MUTEX_LOCK(&thread->mutex);
1693 /* If thread died, then clone the error into the calling thread */
1694 if (thread->state & PERL_ITHR_DIED) {
1695 #if (PERL_VERSION < 13) || (PERL_VERSION == 13 && PERL_SUBVERSION <= 1)
1696 PerlInterpreter *other_perl;
1697 CLONE_PARAMS clone_params;
1698 ithread *current_thread;
1700 other_perl = thread->interp;
1701 clone_params.stashes = newAV();
1702 clone_params.flags = CLONEf_JOIN_IN;
1703 PL_ptr_table = ptr_table_new();
1704 current_thread = S_ithread_get(aTHX);
1705 S_ithread_set(aTHX_ thread);
1706 /* Ensure 'meaningful' addresses retain their meaning */
1707 ptr_table_store(PL_ptr_table, &other_perl->Isv_undef, &PL_sv_undef);
1708 ptr_table_store(PL_ptr_table, &other_perl->Isv_no, &PL_sv_no);
1709 ptr_table_store(PL_ptr_table, &other_perl->Isv_yes, &PL_sv_yes);
1710 err = sv_dup(thread->err, &clone_params);
1711 S_ithread_set(aTHX_ current_thread);
1712 SvREFCNT_dec(clone_params.stashes);
1713 SvREFCNT_inc_void(err);
1714 /* If error was an object, bless it into the correct class */
1715 if (thread->err_class) {
1716 sv_bless(err, gv_stashpv(thread->err_class, 1));
1718 ptr_table_free(PL_ptr_table);
1719 PL_ptr_table = NULL;
1721 PerlInterpreter *other_perl = thread->interp;
1722 CLONE_PARAMS *clone_params = Perl_clone_params_new(other_perl, aTHX);
1723 ithread *current_thread;
1725 clone_params->flags |= CLONEf_JOIN_IN;
1726 PL_ptr_table = ptr_table_new();
1727 current_thread = S_ithread_get(aTHX);
1728 S_ithread_set(aTHX_ thread);
1729 /* Ensure 'meaningful' addresses retain their meaning */
1730 ptr_table_store(PL_ptr_table, &other_perl->Isv_undef, &PL_sv_undef);
1731 ptr_table_store(PL_ptr_table, &other_perl->Isv_no, &PL_sv_no);
1732 ptr_table_store(PL_ptr_table, &other_perl->Isv_yes, &PL_sv_yes);
1733 err = sv_dup(thread->err, clone_params);
1734 S_ithread_set(aTHX_ current_thread);
1735 Perl_clone_params_del(clone_params);
1736 SvREFCNT_inc_void(err);
1737 /* If error was an object, bless it into the correct class */
1738 if (thread->err_class) {
1739 sv_bless(err, gv_stashpv(thread->err_class, 1));
1741 ptr_table_free(PL_ptr_table);
1742 PL_ptr_table = NULL;
1746 MUTEX_UNLOCK(&thread->mutex);
1752 ST(0) = sv_2mortal(err);
1753 /* XSRETURN(1); - implied */
1756 #endif /* USE_ITHREADS */
1762 SV *my_pool_sv = *hv_fetch(PL_modglobal, MY_POOL_KEY,
1763 sizeof(MY_POOL_KEY)-1, TRUE);
1764 my_pool_t *my_poolp = (my_pool_t*)SvPVX(newSV(sizeof(my_pool_t)-1));
1768 Zero(my_poolp, 1, my_pool_t);
1769 sv_setuv(my_pool_sv, PTR2UV(my_poolp));
1771 PL_perl_destruct_level = 2;
1772 MUTEX_INIT(&MY_POOL.create_destruct_mutex);
1773 MUTEX_LOCK(&MY_POOL.create_destruct_mutex);
1775 PL_threadhook = &Perl_ithread_hook;
1777 MY_POOL.tid_counter = 1;
1778 # ifdef THREAD_CREATE_NEEDS_STACK
1779 MY_POOL.default_stack_size = THREAD_CREATE_NEEDS_STACK;
1782 /* The 'main' thread is thread 0.
1783 * It is detached (unjoinable) and immortal.
1786 MUTEX_INIT(&MY_POOL.main_thread.mutex);
1788 /* Head of the threads list */
1789 MY_POOL.main_thread.next = &MY_POOL.main_thread;
1790 MY_POOL.main_thread.prev = &MY_POOL.main_thread;
1792 MY_POOL.main_thread.count = 1; /* Immortal */
1794 MY_POOL.main_thread.interp = aTHX;
1795 MY_POOL.main_thread.state = PERL_ITHR_DETACHED; /* Detached */
1796 MY_POOL.main_thread.stack_size = MY_POOL.default_stack_size;
1798 MY_POOL.main_thread.thr = GetCurrentThreadId();
1800 MY_POOL.main_thread.thr = pthread_self();
1803 S_ithread_set(aTHX_ &MY_POOL.main_thread);
1804 MUTEX_UNLOCK(&MY_POOL.create_destruct_mutex);
1805 #endif /* USE_ITHREADS */