svn commit: r354853 - head/sys/arm64/arm64

Andrew Turner andrew at FreeBSD.org
Tue Nov 19 13:29:00 UTC 2019


Author: andrew
Date: Tue Nov 19 13:28:59 2019
New Revision: 354853
URL: https://svnweb.freebsd.org/changeset/base/354853

Log:
  Return 0 from ptrace_set_pc as it now completes successfully.
  
  Sponsored by:	DARPA, AFRL

Modified:
  head/sys/arm64/arm64/machdep.c

Modified: head/sys/arm64/arm64/machdep.c
==============================================================================
--- head/sys/arm64/arm64/machdep.c	Tue Nov 19 13:25:46 2019	(r354852)
+++ head/sys/arm64/arm64/machdep.c	Tue Nov 19 13:28:59 2019	(r354853)
@@ -413,7 +413,7 @@ ptrace_set_pc(struct thread *td, u_long addr)
 {
 
 	td->td_frame->tf_elr = addr;
-	return (EDOOFUS);
+	return (0);
 }
 
 int


More information about the svn-src-head mailing list