diff options
author | Michael Snyder <msnyder@vmware.com> | 2000-05-26 23:22:41 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2000-05-26 23:22:41 +0000 |
commit | c60c0f5f8841d467149bdf0980bd17fb1246ca51 (patch) | |
tree | 1ea824d589d4ac0b2e5f62c5f9963a9867d9e803 /gdb/procfs.c | |
parent | a799cbe2740f55a797085b0c67b69eaae6745940 (diff) | |
download | gdb-c60c0f5f8841d467149bdf0980bd17fb1246ca51.zip gdb-c60c0f5f8841d467149bdf0980bd17fb1246ca51.tar.gz gdb-c60c0f5f8841d467149bdf0980bd17fb1246ca51.tar.bz2 |
2000-05-26 Michael Snyder <msnyder@seadog.cygnus.com>
* gregset.h: New file. Typedefs for gdb_gregset_t and
gdb_fpregset_t, prototypes for supply_gregset and friends.
* procfs.c: Include gregset.h. Delete local prototypes for
supply_gregset etc., and local typedef gdb_gregset_t etc.
* sol-thread.c: Include gregset.h, delete local prototypes,
add appropriate casts to gdb_gregset_t.
* uw-thread.c, lin-thread.c, core-sol2.c, core-regset.c,
sparc-tdep.c, ptx4-nat.c, ppc-linux-nat.c, mipsv4-nat.c,
m88k-nat.c, m68klinux-nat.c, m68k-tdep.c, irix5-nat.c,
irix4-nat.c, ia64-linux-nat.c, i386v4-nat.c, cxux-nat.c,
arm-linux-nat.c, alpha-nat.c: Include gregset.h.
* config/nm-linux.h: Define GDB_GREGSET_T, GDB_FPREGET_T.
* config/sparc/tm-sun4sol2.h: Ditto.
Diffstat (limited to 'gdb/procfs.c')
-rw-r--r-- | gdb/procfs.c | 34 |
1 files changed, 3 insertions, 31 deletions
diff --git a/gdb/procfs.c b/gdb/procfs.c index 73716e6..9e9275a 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -89,6 +89,9 @@ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "proc-utils.h" +/* Prototypes for supply_gregset etc. */ +#include "gregset.h" + /* =================== TARGET_OPS "MODULE" =================== */ /* @@ -245,24 +248,6 @@ typedef prstatus_t gdb_prstatus_t; typedef prstatus_t gdb_lwpstatus_t; #endif /* NEW_PROC_API */ - -/* These #ifdefs are for sol2.x in particular. sol2.x has - both a "gregset_t" and a "prgregset_t", which have - similar uses but different layouts. sol2.x gdb tries to - use prgregset_t (and prfpregset_t) everywhere. */ - -#ifdef GDB_GREGSET_TYPE - typedef GDB_GREGSET_TYPE gdb_gregset_t; -#else - typedef gregset_t gdb_gregset_t; -#endif - -#ifdef GDB_FPREGSET_TYPE - typedef GDB_FPREGSET_TYPE gdb_fpregset_t; -#else - typedef fpregset_t gdb_fpregset_t; -#endif - /* Provide default composite pid manipulation macros for systems that don't have threads. */ @@ -3470,19 +3455,6 @@ do_detach (signo) * is resumed. */ -/* These could go in a header file, but the many and various - definitions of gregset_t would make it tricky and ugly. Several - different native operating systems (notably Solaris and Linux) have - various different definitions for gregset_t and fpregset_t. We - have been kludging around this problem for a while, it would be - nice if someday we came up with a prettier way of handling it - (FIXME). */ - -extern void fill_gregset (gdb_gregset_t *, int); -extern void fill_fpregset (gdb_fpregset_t *, int); -extern void supply_gregset (gdb_gregset_t *); -extern void supply_fpregset (gdb_fpregset_t *); - static void procfs_fetch_registers (regno) int regno; |