Home
last modified time | relevance | path

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

/freebsd-14.2/sys/arm/arm/
H A Dmachdep_ptrace.c130 int error, error_alt; in ptrace_single_step() local
162 error_alt = ptrace_get_alternative_next(td, cur_instr, &alt_next); in ptrace_single_step()
163 if (error_alt == 0) { in ptrace_single_step()
164 error_alt = ptrace_read_int(td, alt_next, in ptrace_single_step()
166 if (error_alt) { in ptrace_single_step()
169 error_alt = ptrace_write_int(td, alt_next, in ptrace_single_step()
171 if (error_alt) in ptrace_single_step()
180 return ((error != 0) && (error_alt != 0)); in ptrace_single_step()