summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorPhilip Guenthe <guenther@cvs.openbsd.org>2012-07-11 11:18:41 +0000
committerPhilip Guenthe <guenther@cvs.openbsd.org>2012-07-11 11:18:41 +0000
commit24ab80e82da7dc045a4052e24c5f383520aa8626 (patch)
tree4612d18b7faa0e2cdad069a2990daef0ff8ebabe /usr.bin
parent827c2f9cfa50192dcf40fbcdf809d4a177e593b0 (diff)
Report ptrace(PT_{GET,SET}XMMREGS) by name
ok otto@
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/kdump/kdump.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c
index fa0ec4554cf..cfa81e46f48 100644
--- a/usr.bin/kdump/kdump.c
+++ b/usr.bin/kdump/kdump.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kdump.c,v 1.74 2012/07/09 17:51:08 claudio Exp $ */
+/* $OpenBSD: kdump.c,v 1.75 2012/07/11 11:18:40 guenther Exp $ */
/*-
* Copyright (c) 1988, 1993
@@ -421,6 +421,11 @@ ptracedecode(void)
case PT_GETREGS:
(void)printf("PT_GETREGS");
break;
+#ifdef PT_GETXMMREGS
+ case PT_GETXMMREGS:
+ (void)printf("PT_GETXMMREGS");
+ break;
+#endif
#ifdef PT_SETFPREGS
case PT_SETFPREGS:
(void)printf("PT_SETFPREGS");
@@ -429,6 +434,11 @@ ptracedecode(void)
case PT_SETREGS:
(void)printf("PT_SETREGS");
break;
+#ifdef PT_SETXMMREGS
+ case PT_SETXMMREGS:
+ (void)printf("PT_SETXMMREGS");
+ break;
+#endif
#ifdef PT_STEP
case PT_STEP:
(void)printf("PT_STEP");