Home
last modified time | relevance | path

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

/netbsd-src/lib/libpthread/
H A Dpthread_lock.c140 const struct pthread_lock_ops *pthread__lock_ops = &pthread__lock_ops_ras; variable
185 pthread__lock_ops = &pthread__lock_ops_atomic; in pthread__lockprim_init()
191 pthread__lock_ops = &pthread__lock_ops_atomic; in pthread__lockprim_init()
H A Dpthread_int.h230 extern const struct pthread_lock_ops *pthread__lock_ops;
233 #define pthread__simple_lock_init(alp) (*pthread__lock_ops->plo_init)(alp)
234 #define pthread__simple_lock_try(alp) (*pthread__lock_ops->plo_try)(alp)
235 #define pthread__simple_unlock(alp) (*pthread__lock_ops->plo_unlock)(alp)
H A Dpthread.c307 memcpy(&t->pt_lockops, pthread__lock_ops, sizeof(t->pt_lockops)); in pthread__initthread()