Searched defs:hb_lock_t (Results 1 – 1 of 1) sorted by relevance
109 struct hb_lock_t struct111 hb_lock_t (hb_mutex_t &mutex_) : mutex (&mutex_) { mutex->lock (); } in hb_lock_t() argument112 hb_lock_t (hb_mutex_t *mutex_) : mutex (mutex_) { if (mutex) mutex->lock (); } in hb_lock_t() function113 ~hb_lock_t () { if (mutex) mutex->unlock (); } in ~hb_lock_t() argument115 hb_mutex_t *mutex;