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/progspace.h | |
parent | d0801dd8f22a3e739c6a7d126d45829df981794d (diff) | |
download | binutils-gdb-343cc95202fce70383551053f2efab09c5e02366.tar.gz |
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/progspace.h')
-rw-r--r-- | gdb/progspace.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/progspace.h b/gdb/progspace.h index a731eb6e24d..6945e38eb92 100644 --- a/gdb/progspace.h +++ b/gdb/progspace.h @@ -179,6 +179,9 @@ struct program_space return objfiles_list.size () > 1; } + /* Free all the objfiles associated with this program space. */ + void free_all_objfiles (); + /* Pointer to next in linked list. */ struct program_space *next = NULL; |