Searched refs:dpr_cv (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_proc.h51 pthread_cond_t dpr_cv; /* cond for dpr_stop/quit/done */ member in struct:dt_proc
72 #define DT_PROC_STOP_CREATE 0x02 /* wait on dpr_cv at process exec */
73 #define DT_PROC_STOP_GRAB 0x04 /* wait on dpr_cv at process grab */
74 #define DT_PROC_STOP_PREINIT 0x08 /* wait on dpr_cv at rtld preinit */
75 #define DT_PROC_STOP_POSTINIT 0x10 /* wait on dpr_cv at rtld postinit */
76 #define DT_PROC_STOP_MAIN 0x20 /* wait on dpr_cv at a.out`main() */
H A Ddt_proc.c256 * If 'why' is set in the stop mask, we wait on dpr_cv for dt_proc_continue().
269 (void) pthread_cond_broadcast(&dpr->dpr_cv);
279 (void) pthread_cond_wait(&dpr->dpr_cv, &dpr->dpr_lock);
714 (void) pthread_cond_broadcast(&dpr->dpr_cv);
829 (void) pthread_cond_broadcast(&dpr->dpr_cv);
833 (void) pthread_cond_wait(&dpr->dpr_cv, &dpr->dpr_lock);
902 * If the control thread was created, then wait on dpr_cv for either
911 (void) pthread_cond_wait(&dpr->dpr_cv, &dpr->dpr_lock);
969 (void) pthread_cond_init(&dpr->dpr_cv, NULL);
1049 (void) pthread_cond_init(&dpr->dpr_cv, NUL
[all...]

Completed in 53 milliseconds