diff options
author | Olivier Houchard <cognet@FreeBSD.org> | 2004-07-20 23:00:02 +0000 |
---|---|---|
committer | Olivier Houchard <cognet@FreeBSD.org> | 2004-07-20 23:00:02 +0000 |
commit | f15c92cfe37da02c279e9b7359141f2aa1337a59 (patch) | |
tree | da41ef027b4bbda681731aaadf99c585d3c9c13c | |
parent | 7e477511d8462f6cdbc8500127fdc7eb849ebd9c (diff) | |
download | src-test2-f15c92cfe37da02c279e9b7359141f2aa1337a59.tar.gz src-test2-f15c92cfe37da02c279e9b7359141f2aa1337a59.zip |
Notes
-rw-r--r-- | sys/arm/arm/machdep.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/arm/arm/machdep.c b/sys/arm/arm/machdep.c index aa65920c566e..ed20ce61688a 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); } |