Home | History | Annotate | Download | only in libpthread

Lines Matching refs:thrd_success

53 	ATF_REQUIRE_EQ(cnd_init(&c), thrd_success);
70 ATF_REQUIRE_EQ(mtx_lock(&b_m), thrd_success);
72 ATF_REQUIRE_EQ(cnd_wait(&b_c, &b_m), thrd_success);
74 ATF_REQUIRE_EQ(mtx_unlock(&b_m), thrd_success);
77 ATF_REQUIRE_EQ(cnd_signal(&b_c), thrd_success);
92 ATF_REQUIRE_EQ(mtx_init(&b_m, mtx_plain), thrd_success);
93 ATF_REQUIRE_EQ(cnd_init(&b_c), thrd_success);
96 ATF_REQUIRE_EQ(thrd_create(&t[i], b_func, n), thrd_success);
99 ATF_REQUIRE_EQ(mtx_lock(&b_m), thrd_success);
101 ATF_REQUIRE_EQ(mtx_unlock(&b_m), thrd_success);
104 ATF_REQUIRE_EQ(cnd_signal(&b_c), thrd_success);
106 ATF_REQUIRE_EQ(cnd_broadcast(&b_c), thrd_success);
110 ATF_REQUIRE_EQ(thrd_join(t[i], NULL), thrd_success);
156 ATF_REQUIRE_EQ(mtx_init(&m, mtx_plain), thrd_success);
157 ATF_REQUIRE_EQ(cnd_init(&c), thrd_success);
159 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
161 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);