diff options
author | Jim Blandy <jimb@codesourcery.com> | 2004-05-21 22:15:10 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2004-05-21 22:15:10 +0000 |
commit | 617a4cbacf3fae7fb4eb43708b127bd19dc1623b (patch) | |
tree | 428672b8e68b23c4d269fc7d793a88190248adbb /gdb/regset.h | |
parent | 6bd3dfaaa22d67e2070f89b4c960311842a3faaf (diff) | |
download | fsf-binutils-gdb-617a4cbacf3fae7fb4eb43708b127bd19dc1623b.zip fsf-binutils-gdb-617a4cbacf3fae7fb4eb43708b127bd19dc1623b.tar.gz fsf-binutils-gdb-617a4cbacf3fae7fb4eb43708b127bd19dc1623b.tar.bz2 |
Allocate regset structures in the gdbarch's obstack, not using
xmalloc.
* regset.c (regset_alloc): Renamed from regset_xmalloc.
Add 'arch' argument. Allocate the regset on arch's obstack, not
using xmalloc.
* regset.h (regset_alloc): Update declaration.
* am64-tdep.c (amd64_regset_from_core_section): Update call; pass
gdbarch argument.
* amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
* i386-tdep.c (i386_regset_from_core_section): Same.
* i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
* i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
* sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
* sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
* sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
* sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
Diffstat (limited to 'gdb/regset.h')
-rw-r--r-- | gdb/regset.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/regset.h b/gdb/regset.h index b787c72..e64c48b 100644 --- a/gdb/regset.h +++ b/gdb/regset.h @@ -51,10 +51,11 @@ struct regset function is COLLECT_REGSET. If the regset has no collect function, pass NULL for COLLECT_REGSET. - The object returned is allocated using xmalloc. */ -extern struct regset *regset_xmalloc (const void *descr, - supply_regset_ftype *supply_regset, - collect_regset_ftype *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 */ |