Searched refs:TDP_INKTRACE (Results 1 – 3 of 3) sorted by relevance
171 KASSERT(!(td->td_pflags & TDP_INKTRACE), ("ktrace_enter: flag set")); in ktrace_enter()172 td->td_pflags |= TDP_INKTRACE; in ktrace_enter()179 KASSERT(td->td_pflags & TDP_INKTRACE, ("ktrace_exit: flag not set")); in ktrace_exit()180 td->td_pflags &= ~TDP_INKTRACE; in ktrace_exit()187 KASSERT(td->td_pflags & TDP_INKTRACE, ("ktrace_assert: flag not set")); in ktrace_assert()
72 (KTRCHECK((td), (type)) && !((td)->td_pflags & TDP_INKTRACE))
452 #define TDP_INKTRACE 0x00000004 /* Thread is currently in KTRACE code. */ macro