Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_proc.c237 assert(why != DT_PROC_STOP_IDLE); in dt_proc_stop()
240 dpr->dpr_stop |= DT_PROC_STOP_IDLE; in dt_proc_stop()
252 while (dpr->dpr_stop & DT_PROC_STOP_IDLE) in dt_proc_stop()
742 if (dpr->dpr_stop & DT_PROC_STOP_IDLE) { in dt_proc_destroy()
744 dpr->dpr_stop &= ~DT_PROC_STOP_IDLE; in dt_proc_destroy()
822 while (!dpr->dpr_done && !(dpr->dpr_stop & DT_PROC_STOP_IDLE)) in dt_proc_create_thread()
1017 if (dpr->dpr_stop & DT_PROC_STOP_IDLE) { in dt_proc_continue()
1018 dpr->dpr_stop &= ~DT_PROC_STOP_IDLE; in dt_proc_continue()
H A Ddt_proc.h71 #define DT_PROC_STOP_IDLE 0x01 /* idle on owner's stop request */ macro