Home
last modified time | relevance | path

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

/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_proc.c242 assert(why != DT_PROC_STOP_IDLE); in dt_proc_stop()
245 dpr->dpr_stop |= DT_PROC_STOP_IDLE; 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()
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.h77 #define DT_PROC_STOP_IDLE 0x01 /* idle on owner's stop request */ macro