Lines Matching refs:thrd_success
52 ATF_REQUIRE_EQ(mtx_init(&m, mtx_plain), thrd_success);
55 ATF_REQUIRE_EQ(mtx_init(&m, mtx_plain | mtx_recursive), thrd_success);
58 ATF_REQUIRE_EQ(mtx_init(&m, mtx_timed), thrd_success);
61 ATF_REQUIRE_EQ(mtx_init(&m, mtx_timed | mtx_recursive), thrd_success);
81 ATF_REQUIRE_EQ(mtx_init(&m, mtx_plain), thrd_success);
82 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
83 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
86 ATF_REQUIRE_EQ(mtx_init(&m, mtx_timed), thrd_success);
87 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
88 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
91 ATF_REQUIRE_EQ(mtx_init(&m, mtx_plain | mtx_recursive), thrd_success);
92 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
93 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
94 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
95 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
96 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
97 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
100 ATF_REQUIRE_EQ(mtx_init(&m, mtx_timed | mtx_recursive), thrd_success);
101 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
102 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
103 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
104 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
105 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
106 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
124 ATF_REQUIRE_EQ(mtx_init(&m, mtx_timed), thrd_success);
125 ATF_REQUIRE_EQ(mtx_timedlock(&m, &ts), thrd_success);
126 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
129 ATF_REQUIRE_EQ(mtx_init(&m, mtx_timed), thrd_success);
130 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
132 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
135 ATF_REQUIRE_EQ(mtx_init(&m, mtx_timed | mtx_recursive), thrd_success);
136 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
137 ATF_REQUIRE_EQ(mtx_timedlock(&m, &ts), thrd_success);
138 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
139 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
142 ATF_REQUIRE_EQ(mtx_init(&m, mtx_timed | mtx_recursive), thrd_success);
143 ATF_REQUIRE_EQ(mtx_timedlock(&m, &ts), thrd_success);
144 ATF_REQUIRE_EQ(mtx_timedlock(&m, &ts), thrd_success);
145 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
146 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
149 ATF_REQUIRE_EQ(mtx_init(&m, mtx_timed | mtx_recursive), thrd_success);
150 ATF_REQUIRE_EQ(mtx_timedlock(&m, &ts), thrd_success);
151 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
152 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
153 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
167 ATF_REQUIRE_EQ(mtx_init(&m, mtx_plain), thrd_success);
168 ATF_REQUIRE_EQ(mtx_trylock(&m), thrd_success);
169 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
172 ATF_REQUIRE_EQ(mtx_init(&m, mtx_plain), thrd_success);
173 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
175 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
178 ATF_REQUIRE_EQ(mtx_init(&m, mtx_plain | mtx_recursive), thrd_success);
179 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
180 ATF_REQUIRE_EQ(mtx_trylock(&m), thrd_success);
181 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
182 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
185 ATF_REQUIRE_EQ(mtx_init(&m, mtx_timed), thrd_success);
186 ATF_REQUIRE_EQ(mtx_trylock(&m), thrd_success);
187 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
190 ATF_REQUIRE_EQ(mtx_init(&m, mtx_timed), thrd_success);
191 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
193 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
196 ATF_REQUIRE_EQ(mtx_init(&m, mtx_timed | mtx_recursive), thrd_success);
197 ATF_REQUIRE_EQ(mtx_lock(&m), thrd_success);
198 ATF_REQUIRE_EQ(mtx_trylock(&m), thrd_success);
199 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);
200 ATF_REQUIRE_EQ(mtx_unlock(&m), thrd_success);