diff options
author | Tom Tromey <tom@tromey.com> | 2019-11-01 21:02:38 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-12-12 15:50:56 -0700 |
commit | 343cc95202fce70383551053f2efab09c5e02366 (patch) | |
tree | 9a6a6c1e979d520891a60e59e76e451c0645218a /gdb/objfiles.h | |
parent | d0801dd8f22a3e739c6a7d126d45829df981794d (diff) | |
download | gdb-343cc95202fce70383551053f2efab09c5e02366.zip gdb-343cc95202fce70383551053f2efab09c5e02366.tar.gz gdb-343cc95202fce70383551053f2efab09c5e02366.tar.bz2 |
Move free_all_objfiles to program_space
This changes free_all_objfiles to be a method on program_space, in
line with the other changes to treat program_space as a container for
objfiles.
gdb/ChangeLog
2019-12-12 Tom Tromey <tom@tromey.com>
* symfile.c (symbol_file_clear): Update.
* progspace.h (struct program_space) <free_all_objfiles>: Declare
method.
* progspace.c (program_space::free_all_objfiles): New method.
* objfiles.h (free_all_objfiles): Don't declare.
* objfiles.c (free_all_objfiles): Move to program_space.
Change-Id: I908b549d2981b6005f7ca181fc0e6d24fc8b7b6f
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r-- | gdb/objfiles.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h index f9bf102..3424055 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -662,8 +662,6 @@ extern void build_objfile_section_table (struct objfile *); extern void free_objfile_separate_debug (struct objfile *); -extern void free_all_objfiles (void); - extern void objfile_relocate (struct objfile *, const struct section_offsets *); extern void objfile_rebase (struct objfile *, CORE_ADDR); |