On Wed, 11 Jul 2001, Doug MacEachern wrote: > can you run 'make perl.i' and see if THX is really needed in the atfork > functions? btw, i did that here and didn't see THX being used by Perl_*_atfork, here they expand to: void Perl_atfork_lock(void) { (void)( { if (pthread_mutex_lock((&PL_op_mutex))) Perl_croak_nocontext("panic: MUTEX_LOCK"); } ); } void Perl_atfork_unlock(void) { (void)( { if (pthread_mutex_unlock((&PL_op_mutex))) Perl_croak_nocontext("panic: MUTEX_UNLOCK"); } ); } i hacked in #define MYMALLOC and still didn't see THX being used.Thread Previous | Thread Next