Home
last modified time | relevance | path

Searched refs:ub_thread_key_set (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/unbound/util/
H A Dlocks.h178 #define ub_thread_key_set(key, v) LOCKRET(pthread_setspecific(key, v)) macro
216 #define ub_thread_key_set(key, v) LOCKRET(thr_setspecific(key, v)) macro
254 void ub_thread_key_set(ub_thread_key_type key, void* v);
295 #define ub_thread_key_set(key, v) (key) = (v) macro
H A Dlocks.c207 else ub_thread_key_set(*key, f); in ub_thread_key_create()
210 void ub_thread_key_set(ub_thread_key_type key, void* v) in ub_thread_key_set() function
H A Dlog.c172 ub_thread_key_set(logkey, num); in log_thread_set()