Home
last modified time | relevance | path

Searched refs:SINGLE_ALLPROC (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/sys/kern/
H A Dkern_thread.c1121 else if (mode == SINGLE_NO_EXIT || mode == SINGLE_ALLPROC) in calc_remaining()
1132 return (mode == SINGLE_ALLPROC ? 0 : 1); in remain_for_mode()
1176 case SINGLE_ALLPROC: in weed_inhib()
1226 mode == SINGLE_ALLPROC || mode == SINGLE_NO_EXIT, in thread_single()
1234 KASSERT((mode == SINGLE_ALLPROC && td->td_proc != p) || in thread_single()
1235 (mode != SINGLE_ALLPROC && td->td_proc == p), in thread_single()
1244 if (mode == SINGLE_ALLPROC) { in thread_single()
1268 if (mode == SINGLE_ALLPROC) in thread_single()
1675 mode == SINGLE_ALLPROC || mode == SINGLE_NO_EXIT, in thread_single_end()
1679 (mode != SINGLE_ALLPROC && (p->p_flag & P_TOTAL_STOP) == 0), in thread_single_end()
[all …]
H A Dkern_procctl.c294 need_stop = thread_single(w->target, SINGLE_ALLPROC) == 0; in reap_kill_proc_locked()
303 thread_single_end(w->target, SINGLE_ALLPROC); in reap_kill_proc_locked()
H A Dkern_proc.c3553 r = thread_single(p, SINGLE_ALLPROC); in stop_all_proc()
3592 thread_single_end(p, SINGLE_ALLPROC); in resume_all_proc()
/freebsd-14.2/sys/sys/
H A Dproc.h939 #define SINGLE_ALLPROC 3 macro