attribute          79 src/ftdm_threadmutex.c 	pthread_attr_t attribute;
attribute          96 src/ftdm_threadmutex.c 	pthread_attr_destroy(&thread->attribute);
attribute         132 src/ftdm_threadmutex.c 	if (pthread_attr_init(&thread->attribute) != 0)	goto fail;
attribute         134 src/ftdm_threadmutex.c 	if (pthread_attr_setdetachstate(&thread->attribute, PTHREAD_CREATE_DETACHED) != 0) goto failpthread;
attribute         136 src/ftdm_threadmutex.c 	if (thread->stack_size && pthread_attr_setstacksize(&thread->attribute, thread->stack_size) != 0) goto failpthread;
attribute         138 src/ftdm_threadmutex.c 	if (pthread_create(&thread->handle, &thread->attribute, thread_launch, thread) != 0) goto failpthread;
attribute         143 src/ftdm_threadmutex.c 	pthread_attr_destroy(&thread->attribute);