attribute 75 src/ftdm_threadmutex.c pthread_attr_t attribute; attribute 92 src/ftdm_threadmutex.c pthread_attr_destroy(&thread->attribute); attribute 128 src/ftdm_threadmutex.c if (pthread_attr_init(&thread->attribute) != 0) goto fail; attribute 130 src/ftdm_threadmutex.c if (pthread_attr_setdetachstate(&thread->attribute, PTHREAD_CREATE_DETACHED) != 0) goto failpthread; attribute 132 src/ftdm_threadmutex.c if (thread->stack_size && pthread_attr_setstacksize(&thread->attribute, thread->stack_size) != 0) goto failpthread; attribute 134 src/ftdm_threadmutex.c if (pthread_create(&thread->handle, &thread->attribute, thread_launch, thread) != 0) goto failpthread; attribute 139 src/ftdm_threadmutex.c pthread_attr_destroy(&thread->attribute);