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
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to