aboutsummaryrefslogtreecommitdiff
path: root/gdb/defs.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2014-01-15 09:40:13 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:48:45 -0700
commitb427c1bc161e6e0dcbce0c27b385b3ecb9c47552 (patch)
tree00f725602c4dbc2f0376351b1210f2176061025a /gdb/defs.h
parent9b1440374cbe716ac5dab4d3092e67089db36fa5 (diff)
downloadgdb-b427c1bc161e6e0dcbce0c27b385b3ecb9c47552.zip
gdb-b427c1bc161e6e0dcbce0c27b385b3ecb9c47552.tar.gz
gdb-b427c1bc161e6e0dcbce0c27b385b3ecb9c47552.tar.bz2
remove exec_set_find_memory_regions
exec_set_find_memory_regions is used to modify the exec target. However, it only has a single caller, and so it is much clearer to simply set the appropriate field directly. It's also better for the coming multi-target world to avoid this kind of global state change anyway. 2014-02-19 Tom Tromey <tromey@redhat.com> * gcore.h (objfile_find_memory_regions): Declare. * gcore.c (objfile_find_memory_regions): No longer static. Add "self" argument. (_initialize_gcore): Don't call exec_set_find_memory_regions. * exec.c: Include gcore.h. (exec_set_find_memory_regions): Remove. (exec_find_memory_regions): Remove. (exec_do_find_memory_regions): Remove. (init_exec_ops): Update. * defs.h (exec_set_find_memory_regions): Remove.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r--gdb/defs.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/defs.h b/gdb/defs.h
index a9669cf..1753dfa 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -368,10 +368,6 @@ typedef int (*find_memory_region_ftype) (CORE_ADDR addr, unsigned long size,
int read, int write, int exec,
int modified, void *data);
-/* Take over the 'find_mapped_memory' vector from exec.c. */
-extern void exec_set_find_memory_regions
- (int (*func) (find_memory_region_ftype func, void *data));
-
/* Possible lvalue types. Like enum language, this should be in
value.h, but needs to be here for the same reason. */