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

/freebsd-10.3-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_proc.h49 pthread_cond_t dpr_cv; /* cond for dpr_stop/quit/done */ member in struct:dt_proc
70 #define DT_PROC_STOP_CREATE 0x02 /* wait on dpr_cv at process exec */
71 #define DT_PROC_STOP_GRAB 0x04 /* wait on dpr_cv at process grab */
72 #define DT_PROC_STOP_PREINIT 0x08 /* wait on dpr_cv at rtld preinit */
73 #define DT_PROC_STOP_POSTINIT 0x10 /* wait on dpr_cv at rtld postinit */
74 #define DT_PROC_STOP_MAIN 0x20 /* wait on dpr_cv at a.out`main() */
H A Ddt_proc.c252 * If 'why' is set in the stop mask, we wait on dpr_cv for dt_proc_continue().
265 (void) pthread_cond_broadcast(&dpr->dpr_cv);
275 (void) pthread_cond_wait(&dpr->dpr_cv, &dpr->dpr_lock);
709 (void) pthread_cond_broadcast(&dpr->dpr_cv);
824 (void) pthread_cond_broadcast(&dpr->dpr_cv);
828 (void) pthread_cond_wait(&dpr->dpr_cv, &dpr->dpr_lock);
897 * If the control thread was created, then wait on dpr_cv for either
906 (void) pthread_cond_wait(&dpr->dpr_cv, &dpr->dpr_lock);
964 (void) pthread_cond_init(&dpr->dpr_cv, NULL);
1040 (void) pthread_cond_init(&dpr->dpr_cv, NUL
[all...]

Completed in 56 milliseconds