Searched refs:_c_waiters (Results 1 - 5 of 5) sorted by relevance

/seL4-refos-master/libs/libmuslc/src/thread/
H A Dpthread_cond_destroy.c5 if (c->_c_shared && c->_c_waiters) {
7 a_or(&c->_c_waiters, 0x80000000);
10 while ((cnt = c->_c_waiters) & 0x7fffffff)
11 __wait(&c->_c_waiters, 0, cnt, 0);
H A Dpthread_cond_broadcast.c8 if (!c->_c_waiters) return 0;
H A Dpthread_cond_signal.c8 if (!c->_c_waiters) return 0;
H A Dpthread_cond_timedwait.c85 a_inc(&c->_c_waiters);
114 if (a_fetch_add(&c->_c_waiters, -1) == -0x7fffffff)
115 __wake(&c->_c_waiters, 1, 0);
/seL4-refos-master/libs/libmuslc/src/internal/
H A Dpthread_impl.h75 #define _c_waiters __u.__vi[3] macro

Completed in 85 milliseconds