diff options
Diffstat (limited to 'gdb/regset.h')
-rw-r--r-- | gdb/regset.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gdb/regset.h b/gdb/regset.h index e64c48b..48ad32d 100644 --- a/gdb/regset.h +++ b/gdb/regset.h @@ -1,6 +1,6 @@ /* Manage register sets. - Copyright 2003 Free Software Foundation, Inc. + Copyright 2003, 2004 Free Software Foundation, Inc. This file is part of GDB. @@ -26,6 +26,7 @@ struct gdbarch; struct regcache; /* Data structure describing a register set. */ + typedef void (supply_regset_ftype) (const struct regset *, struct regcache *, int, const void *, size_t); typedef void (collect_regset_ftype) (const struct regset *, @@ -36,7 +37,7 @@ struct regset { /* Data pointer for private use by the methods below, presumably providing some sort of description of the register set. */ - const void *descr; + struct gdbarch *arch; /* Function supplying values in a register set to a register cache. */ supply_regset_ftype *supply_regset; @@ -45,17 +46,15 @@ struct regset collect_regset_ftype *collect_regset; }; - -/* Allocate a fresh 'struct regset' whose descr is DESCR, whose - supply_regset function is SUPPLY_REGSET, and whose collect_regset - function is COLLECT_REGSET. If the regset has no collect function, - pass NULL for COLLECT_REGSET. +/* Allocate a fresh 'struct regset' whose supply_regset function is + SUPPLY_REGSET, and whose collect_regset function is COLLECT_REGSET. + If the regset has no collect_regset function, pass NULL for + COLLECT_REGSET. The object returned is allocated on ARCH's obstack. */ + extern struct regset *regset_alloc (struct gdbarch *arch, - const void *descr, supply_regset_ftype *supply_regset, collect_regset_ftype *collect_regset); - #endif /* regset.h */ |