aboutsummaryrefslogtreecommitdiff
path: root/sys/powerpc
diff options
context:
space:
mode:
authorJonathan Lemon <jlemon@FreeBSD.org>1999-07-09 04:16:00 +0000
committerJonathan Lemon <jlemon@FreeBSD.org>1999-07-09 04:16:00 +0000
commitab001a72bef18732f5c48efedcc6d2285aa8fc81 (patch)
tree041d2aa2a0fba42e80b16789e7d05986d8bcfab3 /sys/powerpc
parentbd17e46e5537768cc2677acf080f3980c9041b8c (diff)
downloadsrc-ab001a72bef18732f5c48efedcc6d2285aa8fc81.tar.gz
src-ab001a72bef18732f5c48efedcc6d2285aa8fc81.zip
Implement support for hardware debug registers on the i386.
Submitted by: Brian Dean <brdean@unx.sas.com>
Notes
Notes: svn path=/head/; revision=48691
Diffstat (limited to 'sys/powerpc')
-rw-r--r--sys/powerpc/include/ptrace.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/powerpc/include/ptrace.h b/sys/powerpc/include/ptrace.h
index ec3d5aab5ca5..2c43a2eef8d4 100644
--- a/sys/powerpc/include/ptrace.h
+++ b/sys/powerpc/include/ptrace.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)ptrace.h 8.1 (Berkeley) 6/11/93
- * $Id: ptrace.h,v 1.5 1997/02/22 09:35:03 peter Exp $
+ * $Id: ptrace.h,v 1.6 1998/05/19 00:00:12 tegge Exp $
*/
#ifndef _MACHINE_PTRACE_H_
@@ -44,6 +44,8 @@
#define PT_SETREGS (PT_FIRSTMACH + 2)
#define PT_GETFPREGS (PT_FIRSTMACH + 3)
#define PT_SETFPREGS (PT_FIRSTMACH + 4)
+#define PT_GETDBREGS (PT_FIRSTMACH + 5)
+#define PT_SETDBREGS (PT_FIRSTMACH + 6)
#ifdef KERNEL
int ptrace_read_u_check __P((struct proc *p, vm_offset_t off, size_t len));