Home
last modified time | relevance | path

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

/f-stack/freebsd/arm/arm/
H A Dmachdep_ptrace.c132 int error, error_alt; in ptrace_single_step() local
164 error_alt = ptrace_get_alternative_next(td, cur_instr, &alt_next); in ptrace_single_step()
165 if (error_alt == 0) { in ptrace_single_step()
166 error_alt = ptrace_read_int(td, alt_next, in ptrace_single_step()
168 if (error_alt) { in ptrace_single_step()
171 error_alt = ptrace_write_int(td, alt_next, in ptrace_single_step()
173 if (error_alt) in ptrace_single_step()
182 return ((error != 0) && (error_alt != 0)); in ptrace_single_step()