diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2004-02-09 23:50:55 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2004-02-09 23:50:55 +0000 |
commit | 1ab216172b8ff47b90b51c019e1d14edcc770b16 (patch) | |
tree | 90e133848c49dcabf37dfec851951d6e37a248c5 /gdb/gdb_obstack.h | |
parent | f80e2ec4e818045849c26d58c57d25457c13a321 (diff) | |
download | gdb-1ab216172b8ff47b90b51c019e1d14edcc770b16.zip gdb-1ab216172b8ff47b90b51c019e1d14edcc770b16.tar.gz gdb-1ab216172b8ff47b90b51c019e1d14edcc770b16.tar.bz2 |
2004-02-09 Elena Zannoni <ezannoni@redhat.com>
* bcache.c (bcache_xmalloc): Use obstack_init instead of
obstack_specify_allocation.
* objfiles.c (allocate_objfile): Ditto.
* solib-sunos.c (solib_add_common_symbols)
(allocate_rt_common_objfile): Ditto.
* symfile.c (reread_symbols): Ditto.
* gdb_obstack.h: Add comment.
Diffstat (limited to 'gdb/gdb_obstack.h')
-rw-r--r-- | gdb/gdb_obstack.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/gdb_obstack.h b/gdb/gdb_obstack.h index 237830e..0dcfc4f 100644 --- a/gdb/gdb_obstack.h +++ b/gdb/gdb_obstack.h @@ -26,6 +26,13 @@ /* Unless explicitly specified, GDB obstacks always use xmalloc() and xfree(). */ +/* Note: ezannoni 2004-02-09: One could also specify the allocation + functions using a special init function for each obstack, + obstack_specify_allocation. However we just use obstack_init and + let these defines here do the job. While one could argue the + superiority of one approach over the other, we just chose one + throughout. */ + #define obstack_chunk_alloc xmalloc #define obstack_chunk_free xfree |