Symbol: pthread_cond_wait
crypto/heimdal/lib/ipc/common.c
142
ret = pthread_cond_wait(&s->cond, &s->mutex);
crypto/openssl/crypto/thread/arch/thread_posix.c
175
pthread_cond_wait(cv_p, mutex_p);
crypto/openssl/crypto/thread/arch/thread_posix.c
190
pthread_cond_wait(cv_p, mutex_p);
crypto/openssl/crypto/threads_pthread.c
395
pthread_cond_wait(&lock->alloc_signal, &lock->alloc_lock);
crypto/openssl/crypto/threads_pthread.c
474
pthread_cond_wait(&lock->prior_signal, &lock->prior_lock);
include/pthread.h
210
int pthread_cond_wait(pthread_cond_t * __restrict,
lib/libc/gen/_pthread_stubs.c
230
STUB_FUNC2(pthread_cond_wait, PJT_COND_WAIT, int, void *, void *)
lib/libstdthreads/cnd.c
93
if (pthread_cond_wait(cond, mtx) != 0)
lib/libthr/thread/thr_cond.c
62
__weak_reference(__thr_cond_wait, pthread_cond_wait);
lib/libusb/libusb10_io.c
320
pthread_cond_wait(&ctx->ctx_cond,
sbin/ggate/ggated/ggated.c
775
error = pthread_cond_wait(&inqueue_cond, &inqueue_mtx);
sbin/ggate/ggated/ggated.c
868
error = pthread_cond_wait(&outqueue_cond,
sbin/hastd/synch.h
156
error = pthread_cond_wait(cv, lock);
sys/kern/subr_vmem.c
273
#define VMEM_CONDVAR_WAIT(vm) pthread_cond_wait(&vm->vm_cv, &vm->vm_lock)
tests/sys/kern/ssl_sendfile.c
138
ATF_REQUIRE(pthread_cond_wait(&c->cv, &c->mtx) == 0);
tests/sys/kern/ssl_sendfile.c
231
ATF_REQUIRE(pthread_cond_wait(&c->cv, &c->mtx) == 0);
tests/sys/kern/ssl_sendfile.c
260
ATF_REQUIRE(pthread_cond_wait(&c->cv, &c->mtx) == 0);
tests/sys/kern/ssl_sendfile.c
443
ATF_REQUIRE(pthread_cond_wait(&c.cv, &c.mtx) == 0);
tools/regression/pthread/cv_cancel1/cv_cancel1.c
44
pthread_cond_wait(&cv, &m);
tools/regression/pthread/unwind/cond_wait_cancel.cpp
19
pthread_cond_wait(&cv, &mtx);
tools/regression/pthread/unwind/cond_wait_cancel2.cpp
23
pthread_cond_wait(&cv, &mtx);
tools/tools/netrate/juggle/juggle.c
333
if (pthread_cond_wait(&threaded_cond, &threaded_mtx) != 0)
tools/tools/nvmf/nvmfd/io.c
296
pthread_cond_wait(&io_cond, &io_na_mutex);
usr.bin/mkuzip/mkuz_fqueue.c
126
pthread_cond_wait(&fqp->cvar, &fqp->mtx);
usr.bin/mkuzip/mkuz_fqueue.c
171
pthread_cond_wait(&fqp->cvar, &fqp->mtx);
usr.bin/mkuzip/mkuz_fqueue.c
200
pthread_cond_wait(&fqp->cvar, &fqp->mtx);
usr.bin/sort/radixsort.c
206
pthread_cond_wait(&g_ls_cond, &g_ls_mutex);
usr.sbin/bhyve/bhyverun.c
613
pthread_cond_wait(&resetcpu_cond, &resetcpu_mtx);
usr.sbin/bhyve/block_if.c
1023
pthread_cond_wait(&bc->bc_work_done_cond, &bc->bc_mtx);
usr.sbin/bhyve/block_if.c
403
pthread_cond_wait(&bc->bc_cond, &bc->bc_mtx);
usr.sbin/bhyve/block_if.c
871
pthread_cond_wait(&bse.bse_cond, &bse.bse_mtx);
usr.sbin/bhyve/gdb.c
861
pthread_cond_wait(&idle_vcpus, &gdb_lock);
usr.sbin/bhyve/hda_codec.c
872
pthread_cond_wait(&actx->cond, &actx->mtx);
usr.sbin/bhyve/mevent_test.c
146
while (!pthread_cond_wait(&sync.e_cond, &sync.e_mt)) {
usr.sbin/bhyve/mevent_test.c
223
while (!pthread_cond_wait(&accept_condvar, &accept_mutex)) {
usr.sbin/bhyve/pci_e82545.c
1517
pthread_cond_wait(&sc->esc_tx_cond, &sc->esc_mtx);
usr.sbin/bhyve/pci_e82545.c
1547
pthread_cond_wait(&sc->esc_tx_cond, &sc->esc_mtx);
usr.sbin/bhyve/pci_e82545.c
1563
pthread_cond_wait(&sc->esc_rx_cond, &sc->esc_mtx);
usr.sbin/bhyve/pci_nvme.c
1000
pthread_cond_wait(&sc->aen_cond, &sc->aen_mtx);
usr.sbin/bhyve/pci_virtio_net.c
512
error = pthread_cond_wait(&sc->tx_cond, &sc->tx_mtx);
usr.sbin/bhyve/pci_virtio_net.c
523
error = pthread_cond_wait(&sc->tx_cond, &sc->tx_mtx);
usr.sbin/bhyve/pci_virtio_scsi.c
331
pthread_cond_wait(&q->vsq_cv, &q->vsq_rmtx);
usr.sbin/bhyve/rfb.c
1456
pthread_cond_wait(&rc->cond, &rc->mtx);
usr.sbin/bhyve/snapshot.c
1154
pthread_cond_wait(&vcpus_can_run, &vcpu_lock);
usr.sbin/bhyve/snapshot.c
1187
pthread_cond_wait(&vcpus_can_run, &vcpu_lock);
usr.sbin/bhyve/snapshot.c
1200
pthread_cond_wait(&vcpus_idle, &vcpu_lock);
usr.sbin/bhyve/tpm_intf_crb.c
203
pthread_cond_wait(&crb->cond, &crb->mutex);
usr.sbin/ngctl/main.c
293
pthread_cond_wait(&cond, &mutex);
usr.sbin/rpc.tlsservd/rpc.tlsservd.c
373
pthread_cond_wait(&rpctls_cv, &rpctls_mtx);
usr.sbin/virtual_oss/virtual_oss/int.h
42
#define atomic_wait() pthread_cond_wait(&atomic_cv, &atomic_mtx)