Home
last modified time | relevance | path

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

/freebsd/sys/arm/arm/
H A Dmachdep_ptrace.c129 int error, error_alt; in ptrace_single_step() local
161 error_alt = ptrace_get_alternative_next(td, cur_instr, &alt_next); in ptrace_single_step()
162 if (error_alt == 0) { in ptrace_single_step()
163 error_alt = ptrace_read_int(td, alt_next, in ptrace_single_step()
165 if (error_alt) { in ptrace_single_step()
168 error_alt = ptrace_write_int(td, alt_next, in ptrace_single_step()
170 if (error_alt) in ptrace_single_step()
179 return ((error != 0) && (error_alt != 0)); in ptrace_single_step()