diff options
author | Tom Tromey <tom@tromey.com> | 2019-01-15 17:06:38 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-01-17 15:42:00 -0700 |
commit | 7e955d83c4128ec773d84b92487ed1cdfed09938 (patch) | |
tree | 95fd2b230aa1ec340efdf069c98423ae73a6d6bd /gdb/objfiles.h | |
parent | 2030c079717475f5b6fad837bb81758891f3b802 (diff) | |
download | gdb-7e955d83c4128ec773d84b92487ed1cdfed09938.zip gdb-7e955d83c4128ec773d84b92487ed1cdfed09938.tar.gz gdb-7e955d83c4128ec773d84b92487ed1cdfed09938.tar.bz2 |
Change all_objfiles_safe adapter to be a method on program_space
This changes the all_objfiles_safe range adapter to be a method on the
program space, and fixes up all the users.
gdb/ChangeLog
2019-01-15 Tom Tromey <tom@tromey.com>
* progspace.h (program_space) <objfiles_safe_range>: New
typedef.
<objfiles_safe>: New method.
* objfiles.h (class all_objfiles_safe): Remove.
* objfiles.c (free_all_objfiles, objfile_purge_solibs): Update.
* jit.c (jit_inferior_exit_hook): Update.
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r-- | gdb/objfiles.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h index eca46e5..599d8a1 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -553,28 +553,6 @@ extern void default_iterate_over_objfiles_in_search_order void *cb_data, struct objfile *current_objfile); -/* An iterarable object that can be used to iterate over all - objfiles. The basic use is in a foreach, like: - - for (objfile *objf : all_objfiles_safe (pspace)) { ... } - - This variant uses a basic_safe_iterator so that objfiles can be - deleted during iteration. */ - -class all_objfiles_safe - : public next_adapter<struct objfile, - basic_safe_iterator<next_iterator<objfile>>> -{ -public: - - explicit all_objfiles_safe (struct program_space *pspace) - : next_adapter<struct objfile, - basic_safe_iterator<next_iterator<objfile>>> - (pspace->objfiles_head) - { - } -}; - /* A range adapter that makes it possible to iterate over all compunits in one objfile. */ |