summaryrefslogtreecommitdiff
path: root/sys/arch/m88k/include/ptrace.h
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2005-05-16 11:47:17 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2005-05-16 11:47:17 +0000
commit3a84e00084d30e20920b7bcb34818288784c91ce (patch)
tree8c021dd15e3e4bd8e79a0fbccb63288edfcf3014 /sys/arch/m88k/include/ptrace.h
parent65b476432954176a24f92f9dae135b0f627abbf7 (diff)
Remove PT_[GS]ETFPREGS and struct fpreg, as we have no real floating point
registers, and the floating point control registers are savec in the reg structure.
Diffstat (limited to 'sys/arch/m88k/include/ptrace.h')
-rw-r--r--sys/arch/m88k/include/ptrace.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/m88k/include/ptrace.h b/sys/arch/m88k/include/ptrace.h
index c662ecceb41..d6fa059eeda 100644
--- a/sys/arch/m88k/include/ptrace.h
+++ b/sys/arch/m88k/include/ptrace.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ptrace.h,v 1.1 2004/04/26 12:34:05 miod Exp $ */
+/* $OpenBSD: ptrace.h,v 1.2 2005/05/16 11:47:14 miod Exp $ */
/*
* Copyright (c) 1999, Steve Murphree, Jr.
* Copyright (c) 1992, 1993
@@ -52,8 +52,6 @@
#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)
#ifdef _KERNEL
int cpu_singlestep(struct proc *);