Lines Matching refs:pthread_cond_t
1043 pub struct pthread_cond_t {
1273 impl PartialEq for pthread_cond_t {
1274 fn eq(&self, other: &pthread_cond_t) -> bool {
1278 impl Eq for pthread_cond_t {}
1279 impl hash::Hash for pthread_cond_t {
2320 pub const PTHREAD_COND_INITIALIZER: pthread_cond_t = pthread_cond_t {
3783 pub fn pthread_cond_init(cond: *mut pthread_cond_t, attr: *const pthread_condattr_t) -> c_int; in pthread_cond_init() argument
3784 pub fn pthread_cond_wait(cond: *mut pthread_cond_t, lock: *mut pthread_mutex_t) -> c_int; in pthread_cond_wait() argument
3786 cond: *mut pthread_cond_t, in pthread_cond_timedwait() argument
3790 pub fn pthread_cond_signal(cond: *mut pthread_cond_t) -> c_int; in pthread_cond_signal()
3791 pub fn pthread_cond_broadcast(cond: *mut pthread_cond_t) -> c_int; in pthread_cond_broadcast()
3792 pub fn pthread_cond_destroy(cond: *mut pthread_cond_t) -> c_int; in pthread_cond_destroy()