Home
last modified time | relevance | path

Searched refs:dpr_stop (Results 1 – 2 of 2) sorted by relevance

/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_proc.c244 if (dpr->dpr_stop & why) { in dt_proc_stop()
245 dpr->dpr_stop |= DT_PROC_STOP_IDLE; in dt_proc_stop()
246 dpr->dpr_stop &= ~why; in dt_proc_stop()
257 while (dpr->dpr_stop & DT_PROC_STOP_IDLE) in dt_proc_stop()
621 if (dpr->dpr_stop & DT_PROC_STOP_IDLE) { in dt_proc_destroy()
623 dpr->dpr_stop &= ~DT_PROC_STOP_IDLE; in dt_proc_destroy()
676 dpr->dpr_stop |= stop; /* set bit for initial rendezvous */ in dt_proc_create_thread()
701 while (!dpr->dpr_done && !(dpr->dpr_stop & DT_PROC_STOP_IDLE)) in dt_proc_create_thread()
892 if (dpr->dpr_stop & DT_PROC_STOP_IDLE) { in dt_proc_continue()
893 dpr->dpr_stop &= ~DT_PROC_STOP_IDLE; in dt_proc_continue()
H A Ddt_proc.h60 uint8_t dpr_stop; /* stop mask: see flag bits below */ member