aboutsummaryrefslogtreecommitdiff
path: root/gdb/regset.h
diff options
context:
space:
mode:
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 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 */