p4raw-id: //depot/perl@19201
#ifdef OLD_PTHREADS_API
pthread_create( &thread->thr, attr, Perl_ithread_run, (void *)thread);
#else
+ pthread_attr_setscope( &attr, PTHREAD_SCOPE_SYSTEM );
pthread_create( &thread->thr, &attr, Perl_ithread_run, (void *)thread);
#endif
}