summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/arm/arm/machdep.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/arm/arm/machdep.c b/sys/arm/arm/machdep.c
index aa65920..ed20ce6 100644
--- a/sys/arm/arm/machdep.c
+++ b/sys/arm/arm/machdep.c
@@ -297,12 +297,21 @@ cpu_halt(void)
int
ptrace_single_step(struct thread *td)
{
+ /* XXX */
+ return (0);
+}
+
+int
+ptrace_clear_single_step(struct thread *td)
+{
+ /* XXX */
return (0);
}
int
ptrace_set_pc(struct thread *td, unsigned long addr)
{
+ td->td_frame->tf_pc = addr;
return (0);
}
OpenPOWER on IntegriCloud