2002-01-09 Michael Snyder <msnyder@redhat.com>

* gregset.h (gdb_fpxregset_t): Define.
	(supply_fpxregset): Prototype.
	(fill_fpxregset): Prototype.
This commit is contained in:
Michael Snyder 2002-01-09 20:48:43 +00:00
parent b4db1224b7
commit db4a10fae4
2 changed files with 19 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2002-01-09 Michael Snyder <msnyder@redhat.com>
* gregset.h (gdb_fpxregset_t): Define.
(supply_fpxregset): Prototype.
(fill_fpxregset): Prototype.
* exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
2002-01-09 Richard Earnshaw <rearnsha@arm.com>

View File

@ -1,5 +1,5 @@
/* Interface for functions using gregset and fpregset types.
Copyright 2000 Free Software Foundation, Inc.
Copyright 2000, 2002 Free Software Foundation, Inc.
This file is part of GDB.
@ -52,4 +52,18 @@ extern void supply_fpregset (gdb_fpregset_t *fpregs);
extern void fill_gregset (gdb_gregset_t *gregs, int regno);
extern void fill_fpregset (gdb_fpregset_t *fpregs, int regno);
#ifdef HAVE_PTRACE_GETFPXREGS
/* Linux/i386: Copy register values between GDB's internal register cache
and the i386 extended floating point registers. */
#ifndef GDB_FPXREGSET_T
#define GDB_FPXREGSET_T elf_fpxregset_t
#endif
typedef GDB_FPXREGSET_T gdb_fpxregset_t;
extern void supply_fpxregset (gdb_fpxregset_t *fpxregs);
extern void fill_fpxregset (gdb_fpxregset_t *fpxregs, int regno);
#endif
#endif