From 24ab80e82da7dc045a4052e24c5f383520aa8626 Mon Sep 17 00:00:00 2001 From: Philip Guenthe Date: Wed, 11 Jul 2012 11:18:41 +0000 Subject: Report ptrace(PT_{GET,SET}XMMREGS) by name ok otto@ --- usr.bin/kdump/kdump.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'usr.bin') 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"); -- cgit v1.2.3