*/
static void
-Perl_ithread_clear(pTHX_ ithread* thread)
+S_ithread_clear(pTHX_ ithread* thread)
{
PerlInterpreter *interp;
assert(thread->state & PERL_ITHR_FINISHED &&
MUTEX_UNLOCK(&create_destruct_mutex);
/* Thread is now disowned */
- Perl_ithread_clear(aTHX_ thread);
+ S_ithread_clear(aTHX_ thread);
MUTEX_UNLOCK(&thread->mutex);
MUTEX_DESTROY(&thread->mutex);
#ifdef WIN32
}
/* We are finished with it */
thread->state |= PERL_ITHR_JOINED;
- Perl_ithread_clear(aTHX_ thread);
+ S_ithread_clear(aTHX_ thread);
MUTEX_UNLOCK(&thread->mutex);
return retparam;