Home | History | Annotate | Download | only in src

Lines Matching refs:thread_attr

5195     pthread_attr_t thread_attr;
5197 pthread_attr_init(&thread_attr);
5198 pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_JOINABLE);
5200 if ( pthread_create(&thread_id, &thread_attr, start_routine, arg)!=0 )