summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/arm64/arm64/machdep.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/arm64/arm64/machdep.c b/sys/arm64/arm64/machdep.c
index 70cd12f..7cc3927 100644
--- a/sys/arm64/arm64/machdep.c
+++ b/sys/arm64/arm64/machdep.c
@@ -242,22 +242,24 @@ int
fill_dbregs(struct thread *td, struct dbreg *regs)
{
- panic("ARM64TODO: fill_dbregs");
+ printf("ARM64TODO: fill_dbregs");
+ return (EDOOFUS);
}
int
set_dbregs(struct thread *td, struct dbreg *regs)
{
- panic("ARM64TODO: set_dbregs");
+ printf("ARM64TODO: set_dbregs");
+ return (EDOOFUS);
}
int
ptrace_set_pc(struct thread *td, u_long addr)
{
- panic("ARM64TODO: ptrace_set_pc");
- return (0);
+ printf("ARM64TODO: ptrace_set_pc");
+ return (EDOOFUS);
}
int
OpenPOWER on IntegriCloud