summaryrefslogtreecommitdiff
path: root/gdb/regset.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>2004-05-21 22:15:10 +0000
committerJim Blandy <jimb@codesourcery.com>2004-05-21 22:15:10 +0000
commit41c12290245e766bd885fc8fcfe7381d3b5caa4d (patch)
tree5d0797fd6d42c44b30024fa2f2b6f63e683e5fde /gdb/regset.h
parent37a280d8f69a6de79340262d7e7bd77a348559b9 (diff)
downloadgdb-41c12290245e766bd885fc8fcfe7381d3b5caa4d.tar.gz
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.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/regset.h b/gdb/regset.h
index b787c72a9be..e64c48bc0e1 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 */