Searched refs:mtx_recursive (Results 1 – 4 of 4) sorted by relevance
91 int __pthread_type = (__type & mtx_recursive) ? PTHREAD_MUTEX_RECURSIVE in mtx_init()93 __type &= ~mtx_recursive; in mtx_init()
229 ASSERT_EQ(thrd_success, mtx_init(&m, mtx_plain | mtx_recursive)); in TEST()230 ASSERT_EQ(thrd_success, mtx_init(&m, mtx_timed | mtx_recursive)); in TEST()232 ASSERT_EQ(thrd_error, mtx_init(&m, mtx_recursive)); in TEST()266 ASSERT_EQ(thrd_success, mtx_init(&m, mtx_plain | mtx_recursive)); in TEST()
51 int enumeration_constants = mtx_plain | mtx_recursive | mtx_timed | in threads_h()
63 mtx_recursive = 0x2, enumerator