Home | History | Annotate | Download | only in pthread_mutexattr_settype

Lines Matching refs:mta

23 	pthread_mutexattr_t mta;
27 if (pthread_mutexattr_init(&mta) != 0) {
32 if (pthread_mutexattr_gettype(&mta, &type) != 0) {
43 if (pthread_mutexattr_settype(&mta, PTHREAD_MUTEX_NORMAL) != 0) {
48 if (pthread_mutexattr_gettype(&mta, &type) != 0) {
58 if (pthread_mutexattr_settype(&mta, PTHREAD_MUTEX_ERRORCHECK) != 0) {
62 if (pthread_mutexattr_gettype(&mta, &type) != 0) {
72 if (pthread_mutexattr_settype(&mta, PTHREAD_MUTEX_RECURSIVE) != 0) {
77 if (pthread_mutexattr_gettype(&mta, &type) != 0) {
87 if (pthread_mutexattr_destroy(&mta) != 0) {