Symbol: pthread_cond_init
crypto/heimdal/lib/ipc/common.c
115
pthread_cond_init(&s->cond, NULL);
crypto/openssl/crypto/thread/arch/thread_posix.c
161
if (pthread_cond_init(cv_p, NULL) != 0) {
crypto/openssl/crypto/threads_pthread.c
566
conds[i - 3] = pthread_cond_init(&new->prior_signal, NULL) == 0 ? &new->prior_signal : NULL;
crypto/openssl/crypto/threads_pthread.c
570
conds[i - 3] = pthread_cond_init(&new->alloc_signal, NULL) == 0 ? &new->alloc_signal : NULL;
include/pthread.h
203
int pthread_cond_init(pthread_cond_t * __restrict,
lib/libc/gen/_pthread_stubs.c
228
STUB_FUNC2(pthread_cond_init, PJT_COND_INIT, int, void *, void *)
lib/libstdthreads/cnd.c
55
switch (pthread_cond_init(cond, NULL)) {
lib/libthr/thread/thr_cond.c
67
__weak_reference(_thr_cond_init, pthread_cond_init);
lib/libusb/libusb10.c
274
if (pthread_cond_init(&ctx->ctx_cond, &attr) != 0) {
sbin/ggate/ggated/ggated.c
621
error = pthread_cond_init(&inqueue_cond, NULL);
sbin/ggate/ggated/ggated.c
631
error = pthread_cond_init(&outqueue_cond, NULL);
sbin/hastd/synch.h
146
error = pthread_cond_init(cv, &attr);
sys/kern/subr_vmem.c
271
#define VMEM_CONDVAR_INIT(vm, wchan) pthread_cond_init(&vm->vm_cv, NULL)
tests/sys/kern/ssl_sendfile.c
130
ATF_REQUIRE(pthread_cond_init(&c->cv, NULL) == 0);
tools/regression/pthread/unwind/cond_wait_cancel.cpp
31
pthread_cond_init(&cv, NULL);
tools/regression/pthread/unwind/cond_wait_cancel2.cpp
48
pthread_cond_init(&cv, NULL);
tools/tools/nvmf/nvmfd/io.c
75
pthread_cond_init(&io_cond, NULL);
usr.bin/mkuzip/mkuz_fqueue.c
53
if (pthread_cond_init(&fqp->cvar, NULL) != 0) {
usr.bin/sort/radixsort.c
685
pthread_cond_init(&g_ls_cond, NULL);
usr.sbin/bhyve/block_if.c
654
pthread_cond_init(&bc->bc_cond, NULL);
usr.sbin/bhyve/block_if.c
656
pthread_cond_init(&bc->bc_work_done_cond, NULL);
usr.sbin/bhyve/block_if.c
856
pthread_cond_init(&bse.bse_cond, NULL);
usr.sbin/bhyve/gdb.c
2210
error = pthread_cond_init(&idle_vcpus, NULL);
usr.sbin/bhyve/hda_codec.c
908
err = pthread_cond_init(&actx->cond, NULL);
usr.sbin/bhyve/mevent_test.c
136
pthread_cond_init(&sync.e_cond, NULL);
usr.sbin/bhyve/pci_e82545.c
2322
pthread_cond_init(&sc->esc_rx_cond, NULL);
usr.sbin/bhyve/pci_e82545.c
2323
pthread_cond_init(&sc->esc_tx_cond, NULL);
usr.sbin/bhyve/pci_virtio_net.c
666
pthread_cond_init(&sc->tx_cond, NULL);
usr.sbin/bhyve/pci_virtio_scsi.c
946
pthread_cond_init(&queue->vsq_cv, NULL);
usr.sbin/bhyve/rfb.c
1446
pthread_cond_init(&rc->cond, NULL);
usr.sbin/bhyve/tpm_intf_crb.c
538
error = pthread_cond_init(&crb->cond, NULL);
usr.sbin/camdd/camdd.c
601
retval = pthread_cond_init(&dev->cond, NULL);
usr.sbin/rpc.tlsservd/rpc.tlsservd.c
318
pthread_cond_init(&rpctls_cv, NULL);
usr.sbin/virtual_oss/virtual_oss/main.c
68
if (pthread_cond_init(&atomic_cv, NULL) != 0)