Symbol: _umtx_op_err
lib/libthr/thread/thr_cond.c
320
(void)_umtx_op_err(&mp->m_lock,
lib/libthr/thread/thr_rtld.c
244
_umtx_op_err(&dummy, UMTX_OP_WAKE, 1, 0, 0);
lib/libthr/thread/thr_umtx.c
105
_umtx_op_err(mtx, UMTX_OP_MUTEX_WAIT, 0, 0, 0);
lib/libthr/thread/thr_umtx.c
145
ret = _umtx_op_err(mtx, UMTX_OP_MUTEX_WAIT, 0,
lib/libthr/thread/thr_umtx.c
148
ret = _umtx_op_err(mtx, UMTX_OP_MUTEX_LOCK, 0,
lib/libthr/thread/thr_umtx.c
164
return (_umtx_op_err(mtx, UMTX_OP_MUTEX_UNLOCK, 0, 0, 0));
lib/libthr/thread/thr_umtx.c
171
return (_umtx_op_err(mtx, UMTX_OP_MUTEX_TRYLOCK, 0, 0, 0));
lib/libthr/thread/thr_umtx.c
179
return (_umtx_op_err(mtx, UMTX_OP_SET_CEILING, ceiling, oldceiling, 0));
lib/libthr/thread/thr_umtx.c
189
return (_umtx_op_err(__DEVOLATILE(void *, mtx), UMTX_OP_WAIT, id, 0,
lib/libthr/thread/thr_umtx.c
201
return (_umtx_op_err(__DEVOLATILE(void *, mtx), shared ?
lib/libthr/thread/thr_umtx.c
224
return (_umtx_op_err(__DEVOLATILE(void *, mtx), shared ?
lib/libthr/thread/thr_umtx.c
233
return (_umtx_op_err(__DEVOLATILE(void *, mtx), shared ?
lib/libthr/thread/thr_umtx.c
272
return (_umtx_op_err(cv, UMTX_OP_CV_WAIT, flags, m, arg2));
lib/libthr/thread/thr_umtx.c
281
return (_umtx_op_err(cv, UMTX_OP_CV_SIGNAL, 0, NULL, NULL));
lib/libthr/thread/thr_umtx.c
290
return (_umtx_op_err(cv, UMTX_OP_CV_BROADCAST, 0, NULL, NULL));
lib/libthr/thread/thr_umtx.c
310
return (_umtx_op_err(rwlock, UMTX_OP_RW_RDLOCK, flags,
lib/libthr/thread/thr_umtx.c
330
return (_umtx_op_err(rwlock, UMTX_OP_RW_WRLOCK, 0, (void *)tm_size,
lib/libthr/thread/thr_umtx.c
338
return (_umtx_op_err(rwlock, UMTX_OP_RW_UNLOCK, 0, NULL, NULL));
lib/libthr/thread/thr_umtx.c
55
return (_umtx_op_err(mtx, UMTX_OP_MUTEX_LOCK, 0, 0, 0));
lib/libthr/thread/thr_umtx.c
70
_umtx_op_err(mtx, UMTX_OP_MUTEX_WAIT, 0, 0, 0);
lib/libthr/thread/thr_umtx.c
85
return (_umtx_op_err(mtx, UMTX_OP_MUTEX_LOCK, 0, 0, 0));
lib/libthr/thread/thr_umtx.h
169
(void)_umtx_op_err(mtx, UMTX_OP_MUTEX_WAKE2,
sys/sys/umtx.h
139
int _umtx_op_err(void *obj, int op, u_long val, void *uaddr, void *uaddr2);