Home
last modified time | relevance | path

Searched refs:PCB_SINGLE_STEP (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/arm64/arm64/
H A Dptrace_machdep.c174 td->td_pcb->pcb_flags |= PCB_SINGLE_STEP; in ptrace_single_step()
185 td->td_pcb->pcb_flags &= ~PCB_SINGLE_STEP; in ptrace_clear_single_step()
H A Dfreebsd32_machdep.c237 td->td_pcb->pcb_flags |= PCB_SINGLE_STEP; in set_mcontext32()
445 if ((td->td_pcb->pcb_flags & PCB_SINGLE_STEP) != 0) { in freebsd32_sendsig()
446 td->td_pcb->pcb_flags &= ~PCB_SINGLE_STEP; in freebsd32_sendsig()
H A Dexec_machdep.c136 td->td_pcb->pcb_flags |= PCB_SINGLE_STEP; in set_regs()
503 td->td_pcb->pcb_flags |= PCB_SINGLE_STEP; in set_mcontext()
814 if ((td->td_pcb->pcb_flags & PCB_SINGLE_STEP) != 0) { in sendsig()
815 td->td_pcb->pcb_flags &= ~PCB_SINGLE_STEP; in sendsig()
H A Dtrap.c725 td->td_pcb->pcb_flags &= ~PCB_SINGLE_STEP; in do_el0_sync()
/freebsd/sys/arm64/include/
H A Dpcb.h61 #define PCB_SINGLE_STEP (1 << PCB_SINGLE_STEP_SHIFT) macro