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 | 41c12290245e766bd885fc8fcfe7381d3b5caa4d (patch) | |
tree | 5d0797fd6d42c44b30024fa2f2b6f63e683e5fde /gdb/amd64obsd-tdep.c | |
parent | 37a280d8f69a6de79340262d7e7bd77a348559b9 (diff) | |
download | gdb-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/amd64obsd-tdep.c')
-rw-r--r-- | gdb/amd64obsd-tdep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/amd64obsd-tdep.c b/gdb/amd64obsd-tdep.c index 5ded31d8a05..01cc559575f 100644 --- a/gdb/amd64obsd-tdep.c +++ b/gdb/amd64obsd-tdep.c @@ -63,7 +63,8 @@ amd64obsd_regset_from_core_section (struct gdbarch *gdbarch, && sect_size >= tdep->sizeof_gregset + I387_SIZEOF_FXSAVE) { if (tdep->gregset == NULL) - tdep->gregset = regset_xmalloc (tdep, amd64obsd_supply_regset, NULL); + tdep->gregset = regset_alloc (gdbarch, tdep, + amd64obsd_supply_regset, NULL); return tdep->gregset; } |