Home | History | Annotate | Download | only in include

Lines Matching refs:rc

42 	unsigned rc;
44 rc = pthread_mutexattr_init(attr);
45 if (rc != 0) {
47 rc, strerror(rc));
51 rc = pthread_mutexattr_setprotocol(attr, PROTOCOL);
52 if (rc != 0) {
54 rc, strerror(rc));
62 unsigned rc;
64 rc = pthread_mutex_init(mutex, attr);
65 if (rc != 0) {
67 rc, strerror(rc));
76 unsigned rc;
77 rc = pthread_attr_init(threadattr);
78 if (rc != 0) {
80 rc, strerror(rc));