Lines Matching defs:other
143 thrd_t self, other;
148 VERIFY3S(thrd_create(&other, cthr_test_sleep_thr, NULL), ==,
150 VERIFY3S(thrd_equal(self, other), !=, 0);
151 VERIFY3S(thrd_equal(other, other), ==, 0);
152 VERIFY3S(thrd_detach(other), ==, thrd_success);
158 thrd_t self, other;
163 VERIFY3S(thrd_create(&other, cthr_test_sleep_thr, NULL), ==,
165 VERIFY3S(thrd_detach(other), ==, thrd_success);
168 VERIFY3S(thrd_join(other, NULL), ==, thrd_error);