summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/include/ptrace.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/mvme88k/include/ptrace.h')
-rw-r--r--sys/arch/mvme88k/include/ptrace.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/mvme88k/include/ptrace.h b/sys/arch/mvme88k/include/ptrace.h
index 1b29071ca8d..9e34463d07e 100644
--- a/sys/arch/mvme88k/include/ptrace.h
+++ b/sys/arch/mvme88k/include/ptrace.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ptrace.h,v 1.8 2003/12/25 00:26:25 miod Exp $ */
+/* $OpenBSD: ptrace.h,v 1.9 2004/01/11 23:52:45 miod Exp $ */
/*
* Copyright (c) 1999, Steve Murphree, Jr.
* Copyright (c) 1992, 1993
@@ -45,11 +45,16 @@
/*
* m88k-dependent ptrace definitions.
*/
+
#ifndef __MACHINE_PTRACE_H__
#define __MACHINE_PTRACE_H__
+
#define PT_STEP (PT_FIRSTMACH + 0)
#define PT_GETREGS (PT_FIRSTMACH + 1)
#define PT_SETREGS (PT_FIRSTMACH + 2)
#define PT_GETFPREGS (PT_FIRSTMACH + 3)
#define PT_SETFPREGS (PT_FIRSTMACH + 4)
+
+int cpu_singlestep(struct proc *);
+
#endif /* __MACHINE_PTRACE_H__ */