From 5008941522ce9de55706b8014d20ecb3769311ee Mon Sep 17 00:00:00 2001 From: Andrew Turner Date: Tue, 19 Nov 2019 13:28:59 +0000 Subject: [PATCH] Return 0 from ptrace_set_pc as it now completes successfully. Sponsored by: DARPA, AFRL --- sys/arm64/arm64/machdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arm64/arm64/machdep.c b/sys/arm64/arm64/machdep.c index 0bae648c8d2..d41bae02c0b 100644 --- a/sys/arm64/arm64/machdep.c +++ b/sys/arm64/arm64/machdep.c @@ -413,7 +413,7 @@ ptrace_set_pc(struct thread *td, u_long addr) { td->td_frame->tf_elr = addr; - return (EDOOFUS); + return (0); } int