From 64f022a4b9766ad385594d8c92e33af8acbb3aea Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 24 Jun 2000 07:08:49 +0000 Subject: Update. 2000-06-23 Ulrich Drepper * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_request): Define PTRACE_GETFPXREGS and PTRACE_SETFPXREGS. --- sysdeps/unix/sysv/linux/sys/ptrace.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'sysdeps/unix') diff --git a/sysdeps/unix/sysv/linux/sys/ptrace.h b/sysdeps/unix/sysv/linux/sys/ptrace.h index 2b95359720..d636eb4e5f 100644 --- a/sysdeps/unix/sysv/linux/sys/ptrace.h +++ b/sysdeps/unix/sysv/linux/sys/ptrace.h @@ -1,5 +1,5 @@ /* `ptrace' debugger support interface. Linux version. - Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -98,6 +98,16 @@ enum __ptrace_request PTRACE_DETACH = 17, #define PT_DETACH PTRACE_DETACH + /* Get all extended floating point registers used by a processes. + This is not supported on all machines. */ + PTRACE_GETFPXREGS = 18, +#define PT_GETFPXREGS PTRACE_GETFPXREGS + + /* Set all extended floating point registers used by a processes. + This is not supported on all machines. */ + PTRACE_SETFPXREGS = 19, +#define PT_SETFPXREGS PTRACE_SETFPXREGS + /* Continue and stop at the next (return from) syscall. */ PTRACE_SYSCALL = 24 #define PTRACE_SYSCALL PTRACE_SYSCALL -- cgit 1.4.1