Searched refs:pthread_barrier_destroy (Results 1 - 3 of 3) sorted by relevance

/bionic/libc/bionic/
H A Dpthread_barrier.cpp161 // the next cycle, or the thread calling pthread_barrier_destroy().
168 int pthread_barrier_destroy(pthread_barrier_t* barrier_interface) { function
/bionic/libc/include/
H A Dpthread.h237 int pthread_barrier_destroy(pthread_barrier_t*) __nonnull((1));
/bionic/tests/
H A Dpthread_test.cpp1875 ASSERT_EQ(0, pthread_barrier_destroy(&data.barrier));
1888 TEST(pthread, pthread_barrier_destroy) {
1898 ASSERT_EQ(EBUSY, pthread_barrier_destroy(&barrier));
1901 ASSERT_EQ(0, pthread_barrier_destroy(&barrier));
1904 ASSERT_EQ(EINVAL, pthread_barrier_destroy(&barrier));

Completed in 218 milliseconds