summaryrefslogtreecommitdiffstats
path: root/sys/ia64
diff options
context:
space:
mode:
authordavidxu <davidxu@FreeBSD.org>2004-07-13 07:22:56 +0000
committerdavidxu <davidxu@FreeBSD.org>2004-07-13 07:22:56 +0000
commit0a29616acf6f4bc7e940a58de1e9ef27a2b2191c (patch)
treee1ecc998f02711a0013b59d58ed0909c9107eec1 /sys/ia64
parent1920ad199e7dd23d7b308c9caa9ed999e2947329 (diff)
downloadFreeBSD-src-0a29616acf6f4bc7e940a58de1e9ef27a2b2191c.zip
FreeBSD-src-0a29616acf6f4bc7e940a58de1e9ef27a2b2191c.tar.gz
Add ptrace_clear_single_step(), alpha already has it for years, the function
will be used by ptrace to clear a thread's single step state.
Diffstat (limited to 'sys/ia64')
-rw-r--r--sys/ia64/ia64/machdep.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/ia64/ia64/machdep.c b/sys/ia64/ia64/machdep.c
index 9fed902..1dfab47 100644
--- a/sys/ia64/ia64/machdep.c
+++ b/sys/ia64/ia64/machdep.c
@@ -1255,6 +1255,14 @@ ptrace_single_step(struct thread *td)
}
int
+ptrace_clear_single_step(struct thread *td)
+{
+
+ td->td_frame->tf_special.psr &= ~IA64_PSR_SS;
+ return (0);
+}
+
+int
fill_regs(struct thread *td, struct reg *regs)
{
struct trapframe *tf;
OpenPOWER on IntegriCloud