Searched refs:mut_attr (Results 1 – 1 of 1) sorted by relevance
/Zephyr-latest/tests/posix/common/src/ |
D | mutex.c | 52 pthread_mutexattr_t mut_attr; in test_mutex_common() local 57 zassert_ok(pthread_mutexattr_init(&mut_attr)); in test_mutex_common() 58 zassert_ok(pthread_mutexattr_settype(&mut_attr, type), "setting mutex type is failed"); in test_mutex_common() 59 zassert_ok(pthread_mutex_init(&mutex, &mut_attr), "mutex initialization is failed"); in test_mutex_common() 61 zassert_ok(pthread_mutexattr_gettype(&mut_attr, &actual_type), in test_mutex_common() 64 zassert_not_ok(pthread_mutexattr_getprotocol(&mut_attr, NULL)); in test_mutex_common() 67 zassert_not_ok(pthread_mutexattr_setprotocol(&mut_attr, PTHREAD_PRIO_INHERIT)); in test_mutex_common() 68 zassert_not_ok(pthread_mutexattr_setprotocol(&mut_attr, PTHREAD_PRIO_PROTECT)); in test_mutex_common() 69 zassert_ok(pthread_mutexattr_setprotocol(&mut_attr, PTHREAD_PRIO_NONE)); in test_mutex_common() 70 zassert_ok(pthread_mutexattr_getprotocol(&mut_attr, &protocol), in test_mutex_common() [all …]
|